Gets a collection of additional parameter values that should be included in URLs.

Namespace:  Endeca.Web.Url
Assembly:  Endeca.Web (in Endeca.Web.dll) Version: 2.1.1.0 (2.1.1.620)

Syntax

C#
public NameValueCollection Parameters { get; }
Visual Basic (Declaration)
Public ReadOnly Property Parameters As NameValueCollection
Visual C++
public:
property NameValueCollection^ Parameters {
	NameValueCollection^ get ();
}

Remarks

This collection is a copy of the parameters associated with a UrlManager. Because it is a copy, this collection can be be modified in the scope of a call to BuildUrl(Action<(Of <(CommandActionInfo>)>)) without affecting Parameters.

See Also