Creates a new DimensionValuePathFormatter with formatters for the dimension root and path dimension values, which includes intermediates (Ancestors) and last (Dimension Value) parts of a DimensionValuePath. Takes a separator parameter which defines the character to use when joining path values in the URL string.

Namespace:  Endeca.Web.Url.Seo.Formatting
Assembly:  Endeca.Web.Url.Seo (in Endeca.Web.Url.Seo.dll) Version: 2.1.1.0 (2.1.1.0)

Syntax

C#
public DimensionValuePathFormatter(
	char separator,
	IStringFormatter rootFormatter,
	IStringFormatter pathFormatter
)
Visual Basic (Declaration)
Public Sub New ( _
	separator As Char, _
	rootFormatter As IStringFormatter, _
	pathFormatter As IStringFormatter _
)
Visual C++
public:
DimensionValuePathFormatter(
	wchar_t separator, 
	IStringFormatter^ rootFormatter, 
	IStringFormatter^ pathFormatter
)

Parameters

separator
Type: System..::.Char
Character to use to join the path values.
rootFormatter
Type: Endeca.Web.Url.Seo.Formatting..::.IStringFormatter
The IStringFormatter applied to the dimension root
pathFormatter
Type: Endeca.Web.Url.Seo.Formatting..::.IStringFormatter
The IStringFormatter applied to the dimension value ancestors and dimension value

See Also