RequestReceivedEventArgsQueryString Property |
Gets the query string portions sent with the request.
Namespace: VirtualRadar.Interface.WebServerAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public NameValueCollection QueryString { get; }
Public ReadOnly Property QueryString As NameValueCollection
Get
public:
property NameValueCollection^ QueryString {
NameValueCollection^ get ();
}
member QueryString : NameValueCollection with get
Property Value
Type:
NameValueCollectionRemarks
For the URL 'http://127.0.0.1/Root/File.txt?val1=10&val2=20' there would be two name-value pairs in the container
for val1 = 10 and val2 = 20.
See Also