Return true if the server indicated the SORT prefilter is enabled.


Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)

Syntax

Visual Basic (Declaration)
Public Function isSortEnabled() As Boolean _
    Implements INetricsServerInterface.isSortEnabled
C#
public bool isSortEnabled()
C++
public:
 bool isSortEnabled() sealed 
J#
public bool isSortEnabled()
JScript
public  function isSortEnabled() : bool

Return Value

true if the server supports the SORT prefilter, false otherwise.

Implements

INetricsServerInterface.isSortEnabled

Exceptions

Exception TypeCondition
NetricsExceptionIf the server indicates that an error has occured

Remarks

This returns true if the server indicates tables may be created with the SORT prefilter. Note that older versions of the server do not send back this information, so this method will return false for servers before release 4.3.1 even if they do support the SORT prefilter.

See Also