QueryData SetValue Method (String, String, Int32)C# API
Sets 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 bool SetValue(
	string name,
	string value,
	int index
)

Parameters

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

Return Value

true if the nth item with the specified name was set successfully, or false if a new name/value pair was added.
Remarks

Note Note
If the list contains fewer than n items with the specified name, then a new name/value pair is added to the end of the list.
See Also