Given a IEnumerable<(Of <(T>)>), implementations of this function should return a IEnumerable<(Of <(T>)>) in the order desired for formatting. For example DimensionValues could be ordered by dimension name, dimension value name, dimension value ID or some combination of desired characteristics.

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

Syntax

C#
IList<DimensionValue> Canonicalize(
	IEnumerable<DimensionValue> dimensionValues
)
Visual Basic (Declaration)
Function Canonicalize ( _
	dimensionValues As IEnumerable(Of DimensionValue) _
) As IList(Of DimensionValue)
Visual C++
IList<DimensionValue^>^ Canonicalize(
	IEnumerable<DimensionValue^>^ dimensionValues
)

Parameters

dimensionValues
Type: System.Collections.Generic..::.IEnumerable<(Of <(DimensionValue>)>)
Contains the DimensionValues to reorder

Return Value

The reordered collection of DimensionValues

See Also