This String is used to escape values which conflict with delimiters and to separate tags from their values. It separates the keyword part of the URL from the path parameter key value pairs. Its default value is a single underscore ("_"). For example, in the URL:
CopyC#
http://localhost:8080/products/Red-Merlot/_/N-8025?No=10
The '_' in the "Red-Merlot/_/N-8025" is the PathSeparatorToken. This character must be a safe URL-encoded character because the API does not UrlEncode this character.

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

Syntax

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

See Also