Click or drag to resize

PropertyNotImplementedException Class

All properties defined by the relevant ASCOM standard interface must exist in each driver. However, those properties do not all have to be implemented. The minimum requirement for each defined property is to throw the ASCOM.PropertyNotImplementedException for each of its accessors. Note that no default constructor is supplied. Throwing this requires both the property name and unimplemented accessor type to be supplied.
Inheritance Hierarchy
SystemObject
  SystemException
    ASCOMDriverException
      ASCOMNotImplementedException
        ASCOMPropertyNotImplementedException

Namespace: ASCOM
Assembly: ASCOM.Exceptions (in ASCOM.Exceptions.dll) Version: 6.0.0.0 (6.6.9999.9999)
Syntax
[SerializableAttribute]
public class PropertyNotImplementedException : NotImplementedException

The PropertyNotImplementedException type exposes the following members.

Constructors
 NameDescription
Public methodPropertyNotImplementedException Create a new exception
Public methodPropertyNotImplementedException(String) Create a new exception
Public methodPropertyNotImplementedException(String, Boolean) Create a new exception object and identify the specified driver property and accessor as the source.
Public methodPropertyNotImplementedException(String, Exception) Create a new exception
Public methodPropertyNotImplementedException(String, String) Create a new exception with the supplied message
Public methodPropertyNotImplementedException(String, Boolean, Exception) Create a new exception object and identify the specified driver property as the source, and include an inner exception object containing a caught exception.
Public methodPropertyNotImplementedException(String, Boolean, String) Create a new exception with the supplied message
Top
Properties
 NameDescription
Public propertyAccessorSet True if the 'set' accessor is not implemented, else false
Public propertyNumber The COM error code for this exception (hex 80040400 - 800404FF)
(Inherited from DriverException)
Public propertyProperty The property that is not implemented
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