Get the list of supported binary operator names.
[Visual Basic .NET] Public Function GetOperators ( _ ByVal returnDataType As esriNetworkAttributeDataType _ ) As IEnumBSTR
[C#] public IEnumBSTR GetOperators ( esriNetworkAttributeDataType returnDataType );
[C++]
HRESULT GetOperators(
esriNetworkAttributeDataType returnDataType,
IEnumBSTR** opNames
);
[C++]Parameters
returnDataType [in]returnDataType is a parameter of type esriNetworkAttributeDataType
opNames [out, retval]opNames is a parameter of type IEnumBSTR
Product Availability
Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.
Remarks
GetOperators returned the list of valid operators that can be used in a NetworkFunctionEvaluator for a given network attribute DataType.
For numeric data types, the valid operators are:
- * (multiplication)
- / (division)
For the Boolean data type, the valid operators are
- < (less than)
- <= (less than or equal)
- > (greater than)
- >= (greater than or equal)
- == (equal)
- != (not equal)