Click or drag to resize

NotConnectedException Class

This exception should be raised when an operation is attempted that requires communication with the device, but the device is disconnected.
Inheritance Hierarchy
SystemObject
  SystemException
    ASCOMDriverException
      ASCOMNotConnectedException

Namespace:  ASCOM
Assembly:  ASCOM.Exceptions (in ASCOM.Exceptions.dll) Version: 3351c4f3fa64146a7efd5b51ed4591e32a0a5484
Syntax
[SerializableAttribute]
public class NotConnectedException : DriverException

The NotConnectedException type exposes the following members.

Constructors
  NameDescription
Public methodNotConnectedException
Default public constructor for NotConnectedException takes no parameters.
Public methodNotConnectedException(Exception)
Initializes a new instance of the NotConnectedException class from another exception.
Public methodNotConnectedException(String)
Initializes a new instance of the NotConnectedException class with a non-default error message.
Public methodNotConnectedException(String, Exception)
Initializes a new instance of the NotConnectedException class based on another exception.
Top
Properties
  NameDescription
Public propertyNumber
The COM error code for this exception (hex 80040400 - 800404FF)
(Inherited from DriverException.)
Top
Remarks

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

See Also