QueryData GetValue Method (String, Int32)C# API
Gets the value of the nth name/value pair in the list that has the specified name.

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

public string GetValue(
	string name,
	int index
)

Parameters

name
Type: System String
The name to look for.
index
Type: System Int32
The zero-based index of the value to return.

Return Value

The nth value in the list that has the specified name.
Examples

The following example demonstrates finding all the values with the name "r"
for (int i = 0; i < queryData.GetNameCount("r"); i++)
{
    string name = queryData.GetValue("r", i);
}
See Also