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. This constructur returns a DimensionValuePathFormatter that uses the default separator character '-'.

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(
	IStringFormatter rootFormatter,
	IStringFormatter pathFormatter
)
Visual Basic (Declaration)
Public Sub New ( _
	rootFormatter As IStringFormatter, _
	pathFormatter As IStringFormatter _
)
Visual C++
public:
DimensionValuePathFormatter(
	IStringFormatter^ rootFormatter, 
	IStringFormatter^ pathFormatter
)

Parameters

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