QueryData Get Method C# API
Gets the NameValuePair at the specified index in the list.

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public NameValuePair Get(
	int index
)

Parameters

index
Type: System Int32
The zero-based index of the name/value pair to get.

Return Value

The NameValuePair at the specified index in the list.
Examples

The following example demonstrates listing all the name/value pairs in the queryData variable.
// List all the name/value pairs in queryData  
for (int i = 0; i < queryData.Count; i++)
{
    NameValuePair pair = queryData.Get(i);
    WriteMessage(string.Format("{0}={1}", pair.Name, pair.Value));
}
See Also