Checks whether a specified string is a valid HTTP query string.
[Visual Basic]Private Function IsValidQuery( _
ByVal Query As String _
) As Boolean
[C#]
private bool IsValidQuery(
string Query
);
Parameters
- Query
- The query to check.
Return Value
True if the specified string is a valid HTTP query, false otherwise.
See Also
HttpClient Class | HttpClient Members | Org.Mentalis.Proxy.Http Namespace