Click or drag to resize

MethodNotImplementedException Class

All methods defined by the relevant ASCOM standard interface must exist in each driver. However, those methods do not all have to be implemented. The minimum requirement for each defined method is to throw the ASCOM.MethodNotImplementedException. Note that no default constructor is supplied. Throwing this requires the method name.
Inheritance Hierarchy
SystemObject
  SystemException
    ASCOMDriverException
      ASCOMNotImplementedException
        ASCOMMethodNotImplementedException

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

The MethodNotImplementedException type exposes the following members.

Constructors
 NameDescription
Public methodMethodNotImplementedException For Code Analysis, please don't use
Public methodMethodNotImplementedException(String) Create a new exception object and identify the specified driver method as the source.
Public methodMethodNotImplementedException(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.
Public methodMethodNotImplementedException(String, String) Create a new exception with the supplied message
Top
Properties
 NameDescription
Public propertyMethod 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: 0x80040400.

See Also