ActionNotImplementedException Class

Exception thrown by a driver when it receives an unknown command through the Action method.

Definition

Namespace: ASCOM
Assembly: ASCOM.Exceptions (in ASCOM.Exceptions.dll) Version: 7.1.3+4851.c5da65c2b
C#
[SerializableAttribute]
public class ActionNotImplementedException : NotImplementedException
Inheritance
Object    Exception    DriverException    NotImplementedException    ActionNotImplementedException

Remarks

If you need to throw this error as a COM exception use the error number: 0x8004040C.

Constructors

ActionNotImplementedException For Code Analysis, please don't use
ActionNotImplementedException(String) Create a new exception object and identify the specified driver method as the source.
ActionNotImplementedException(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.

Properties

Action The method that is not implemented
Number The COM error code for this exception (hex 80040400 - 800404FF)
(Inherited from DriverException)
PropertyOrMethod The property/accessor or method that is not implemented
(Inherited from NotImplementedException)

See Also