There are a lot of methods undocumented, simply because they could change from version to version. If you check out the API Documentation you may find some of that there.
To attempt to answer your question, this syntax QueryString["parameter"],false)
is incorrect. You're missing something before and/or after the statement. If you're using something like ValidationHelper.GetBoolean(QueryString["parameter"], false)
this is a valid statement and will return a false
value as a default if nothing is found or unable to convert the value to a boolean.
** UPDATE BASED ON YOUR ANSWER **
The syntax ToBool(QueryString["whatDoesThisParamDo"],false)
is attempting to convert the querystring parameter "whatDoesThisParamDo" to a valid value, if it can't or the querystring is empty, it will return the default value of false
.