Gets the NameValuePair at the specified index in the list.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (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
// 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