Gets the current status of the surface operation with specific type.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0

Syntax

C#
public SurfaceOpeartionStatusType GetOperationStatus(
	Type operationClassType
)
Visual Basic
Public Function GetOperationStatus ( _
	operationClassType As Type _
) As SurfaceOpeartionStatusType
Visual C++
public:
SurfaceOpeartionStatusType GetOperationStatus(
	Type^ operationClassType
)

Parameters

operationClassType
Type: System..::..Type
The type of the specific surface operation class which should derive from SurfaceOperation.

Remarks

  1. Returns Varies when the operations with specific type in current collection contain both active and inactive status.
  2. Returns None when there is no such opeartion in current collection.

Exceptions

ExceptionCondition
System..::..ArgumentException Thrown when the class specified by the operationClassType is not a sub class of SurfaceOperation.

See Also