ESRI.ArcGIS.ADF.Web.DataSources
Supports Method
See Also 
ESRI.ArcGIS.ADF.Web.DataSources Namespace > IGISFunctionality Interface : Supports Method




operation
The operation to check for support. Operations are members (methods, properties) on the functionality class.



For example, IMapFunctionality has a GetScale method. To check for support, call the Supports method and provide the method name as the input parameter. For example mapFunctionality.Supports("GetScale").
Determines if the functionality supports an operation.

Syntax

Visual Basic (Declaration) 
Function Supports( _
   ByVal operation As String _
) As Boolean
Visual Basic (Usage)Copy Code
Dim instance As IGISFunctionality
Dim operation As String
Dim value As Boolean
 
value = instance.Supports(operation)
C# 
bool Supports( 
   string operation
)

Parameters

operation
The operation to check for support. Operations are members (methods, properties) on the functionality class.



For example, IMapFunctionality has a GetScale method. To check for support, call the Supports method and provide the method name as the input parameter. For example mapFunctionality.Supports("GetScale").

Return Value

True if the operation (member) is supported. False if the operation is not supported.

See Also

© 2010 All Rights Reserved.