QueryData Add Method (String, QueryData)C# API
Adds a name/value pair to the end of the list, using a value extracted from another QueryData object.

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

public void Add(
	string name,
	QueryData queryData
)

Parameters

name
Type: System String
The name to add.
queryData
Type: Facilita.Web QueryData
The QueryData object from which to extract the value to add.
Remarks

The name used to find the name/value pair in the other object is the same as the name parameter passed.

This is equivalent to Add(name, queryData.GetValue(name)).

See Also