Initializes the state of the commands sources registered with this UrlManager from the state encoded in the specified URL.

Namespace:  Endeca.Web.Url
Assembly:  Endeca.Web (in Endeca.Web.dll) Version: 2.1.3.0 (2.1.3.622)

Syntax

C#
public void InitializeFrom(
	Uri url
)
Visual Basic (Declaration)
Public Sub InitializeFrom ( _
	url As Uri _
)
Visual C++
public:
void InitializeFrom(
	Uri^ url
)

Parameters

url
Type: System..::.Uri
URL containing the state from which the commands and parameters should be initialized.

Remarks

The algorithm by which the commands state encoded in url is represented by the UrlProvider associated with this manager. Calling this method results in Deconstruct(Uri, CommandInfoCollection, NameValueCollection) being called on the provider instance.

Exceptions

ExceptionCondition
System..::.ArgumentNullException if url is null.

See Also