Removes any key value parameter with the keys specified in the collection.

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

Syntax

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

Parameters

c
Type: System.Collections..::..ICollection
Collection of keys specifying parameter pairs to remove.

Remarks

Same semantics as the RemoveParam(String) call except that it is batch applied with c. Each element of collection c must be able to be casted as a String and be non null.

See Also