The following tables list the members exposed by Input.
Public Methods
| | Name | Description |
  | FormatBoolean | Overloaded. Determines wether or not input is 'something' (as opposed to nothing), and if the object type is a boolean. If so, the function returns the value of the boolean object. In all other cases false is returned. |
  | FormatDouble | Overloaded. Formats the input to a valid double. If the specified input is not a valid double, then 0 is returned. |
  | FormatInteger | Formats the input to a valid integer. If the specified input is not a valid integer, then 0 is returned. |
  | FormatLong | Formats the input to a valid long. If the specified input is not a valid long, then 0 is returned. |
  | FormatString | Formats the input to a valid string. If the specified input is not a valid string, then String.Empty is returned. |
  | ParseDouble | Parses the input to a valid double. If the specified input is not a valid double, then 0 is returned. |
  | Request | Overloaded. Gets the specified string from the QueryString, Form, Cookies, or ServerVariables collections. |
  | RequestBoolean | Gets the specified boolean from the QueryString, Form, Cookies, or ServerVariables collections. |
  | RequestDouble | Gets the specified double from the QueryString, Form, Cookies, or ServerVariables collections. |
  | RequestInteger | Gets the specified integer from the QueryString, Form, Cookies, or ServerVariables collections. |
  | RequestLong | Gets the specified long from the QueryString, Form, Cookies, or ServerVariables collections. |
Top
See Also