Iterates over all DimensionValues and attempts to find an applicable IDimensionValuePathFormatter via SelectFormatter(DimensionValuePath) If one is found it then formats the dimension value with the formatter. This function will not return a leading or trailing separator.

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

Syntax

C#
public string Format(
	IEnumerable<DimensionValue> dimensionValues
)
Visual Basic (Declaration)
Public Function Format ( _
	dimensionValues As IEnumerable(Of DimensionValue) _
) As String
Visual C++
public:
virtual String^ Format(
	IEnumerable<DimensionValue^>^ dimensionValues
) sealed

Parameters

dimensionValues
Type: System.Collections.Generic..::.IEnumerable<(Of <(DimensionValue>)>)
The DimensionValues to be formatted

Return Value

The formatted string created by applying IDimensionValuePathFormatters to the DimensionValuePaths of DimensionValues in the IEnumerable<(Of <(T>)>)

Implements

IDimensionValueCollectionFormatter..::.Format(IEnumerable<(Of <(DimensionValue>)>))

See Also