Get and set the maximum URL length

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

Syntax

C#
public virtual int MaxUrl { get; set; }
Visual Basic
Public Overridable Property MaxUrl As Integer
	Get
	Set
Visual C++
public:
virtual property int MaxUrl {
	int get ();
	void set (int value);
}

Field Value

Get and set the maximum URL length for which use of an HTTP GET operation is allowed. If a longer URL is needed, an HTTP POST operation will be used instead. If set to 0, POST will always be used. If set to -1, either GET or POST may be used at the discretion of the API. The default is -1.

See Also