Removes any key value parameter from the to be outputted URL with the parameter name key.

Namespace: Endeca.Navigation
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.3.0.0 (6.3.0.853)

Syntax

C#
public virtual void RemoveParam(
	string key
)
Visual Basic
Public Overridable Sub RemoveParam ( _
	key As String _
)
Visual C++
public:
virtual void RemoveParam(
	String^ key
)

Parameters

key
Type: System..::..String
Parameter pair(s) to remove with the specified parameter name.

Remarks

This removes any parameter created preceeding this call either from the initial query string specified in the constructor or any parameter added from an AddParam(String, String) call. In the case of multiple parameters with the same name, this remove will remove all pairs with the same name. As expected, calling remove on a UrlGen with a empty constructor will not do anything as there will be no parameters to remove.

See Also