Click or drag to resize

ActionNotImplementedException Class

Exception thrown by a driver when it receives an unknown command through the Action method.
Inheritance Hierarchy
SystemObject
  SystemException
    ASCOMDriverException
      ASCOMNotImplementedException
        ASCOMActionNotImplementedException

Namespace: ASCOM
Assembly: ASCOM.Exceptions (in ASCOM.Exceptions.dll) Version: 7.0.0-rc.0+0
Syntax
[SerializableAttribute]
public class ActionNotImplementedException : NotImplementedException

The ActionNotImplementedException type exposes the following members.

Constructors
 NameDescription
Public methodActionNotImplementedException For Code Analysis, please don't use
Public methodActionNotImplementedException(String) Create a new exception object and identify the specified driver method as the source.
Public methodActionNotImplementedException(String, Exception) Create a new exception object and identify the specified driver method as the source, and include an inner exception object containing a caught exception.
Top
Properties
 NameDescription
Public propertyAction The method that is not implemented
Public propertyNumber The COM error code for this exception (hex 80040400 - 800404FF)
(Inherited from DriverException)
Public propertyPropertyOrMethod The property/accessor or method that is not implemented
(Inherited from NotImplementedException)
Top
Remarks
If you need to throw this error as a COM exception use the error number: 0x8004040C.
See Also