Sets the sort order with which the navigation query's records will be sorted.

Namespace: Endeca.Navigation
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.3.0.0 (6.3.0.853)

Syntax

C#
[ObsoleteAttribute("This method may not be supported in future versions of the MDEX Engine API. Use SetNavActiveSortKeys() instead.")]
public virtual void SetNavSortOrder(
	int order
)
Visual Basic
<ObsoleteAttribute("This method may not be supported in future versions of the MDEX Engine API. Use SetNavActiveSortKeys() instead.")> _
Public Overridable Sub SetNavSortOrder ( _
	order As Integer _
)
Visual C++
[ObsoleteAttribute(L"This method may not be supported in future versions of the MDEX Engine API. Use SetNavActiveSortKeys() instead.")]
public:
virtual void SetNavSortOrder(
	int order
)

Parameters

order
Type: System..::..Int32
The int specifying the sort order. The sort order can either be NAV_SORT_ASCENDING or NAV_SORT_DESCENDING. Defaults to ascending and is only applied if the a sort key is present in query as well.

Remarks

Deprecated: This method may not be available in future versions of the Presentation API. Use SetNavActiveSortKeys() instead.

See Also