Bulk add of param pairs.

Namespace: Endeca.Navigation
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.2.0.0 (6.2.2.8614)

Syntax

C#
public virtual void AddParams(
	ICollection c
)
Visual Basic
Public Overridable Sub AddParams ( _
	c As ICollection _
)
Visual C++
public:
virtual void AddParams(
	ICollection^ c
)

Parameters

c
Type: System.Collections..::..ICollection
Collection of key value pairs.

Remarks

Each member of the collection must be of the form (String) <key>=<value> where the value is in x-www-form-urlencoded form. The semantics of these are the same as individual calls to AddParam(String, String) except that the values are encoded.

See Also