The List<(Of <(T>)>) of type String of Endeca URL parameters to include in the path part of the URL. By default it is an empty List<(Of <(T>)>).
CopyC#
http://localhost:8080/products/Red-Merlot/_/N-8025?No=10
In the above example, the 'N' in the 'N-8025' is a path parameter. Path parameters occur before the '?' in the URL.

Remarks

It's not possible to set this property to null using the public accessor.

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 List<string> PathParameters { get; set; }
Visual Basic (Declaration)
Public Property PathParameters As List(Of String)
Visual C++
public:
property List<String^>^ PathParameters {
	List<String^>^ get ();
	void set (List<String^>^ value);
}

See Also