The delimiter character to use for path parameter key and value. For example, in the URL:
CopyC#
http://localhost:8080/products/Red-Merlot/_/N-8025?No=10
The '-' in the "N-8025" is the PathKeyValueSeparator. 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 char PathKeyValueSeparator { get; set; }
Visual Basic (Declaration)
Public Property PathKeyValueSeparator As Char
Visual C++
public:
property wchar_t PathKeyValueSeparator {
	wchar_t get ();
	void set (wchar_t value);
}

See Also