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.1.0 (2.1.1.0)
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
)  | 
Return Value
The reordered collection of 
DimensionValues
See Also