Gets or sets the UrlProvider that is used by this builder to construct URLs from the state of one or more commands

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

Syntax

C#
public UrlProvider UrlProvider { get; set; }
Visual Basic (Declaration)
Public Property UrlProvider As UrlProvider
Visual C++
public:
property UrlProvider^ UrlProvider {
	UrlProvider^ get ();
	void set (UrlProvider^ value);
}

Remarks

By default, this property will return a BasicUrlProvider instance. An application can assign an alternative UrlProvider implementation if a more specialized URL format is required.

Exceptions

ExceptionCondition
System..::.ArgumentNullException if a null value is assigned to this property.

See Also