QueryData SetValue Method (String, String)C# API
Sets the value of the first 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
)

Parameters

name
Type: System String
The name to look for.
value
Type: System String
The value to set.

Return Value

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

Note Note
If the list does not contain an item with the specified name, then a new name/value pair is added to the end of the list.
See Also