QueryData Insert Method (String, QueryData, Int32)C# API
Inserts a name/value pair into the list at the specified index, 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 Insert(
	string name,
	QueryData queryData,
	int index
)

Parameters

name
Type: System String
The name to insert.
queryData
Type: Facilita.Web QueryData
The QueryData object from which to extract the value to add.
index
Type: System Int32
The zero-based position at which to insert the name/value pair in the list.
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 Insert(name, queryData.GetValue(name), index).

See Also