Indicates the status of a client connection to a server.
enum ConnectionStatusEnum { ConnectionNotConnected = 0, ConnectionHealthy = 1, ConnectionSuspect = 2, ConnectionFailed = 3 };
public enum ConnectionStatusEnum { ConnectionNotConnected = 0, ConnectionHealthy = 1, ConnectionSuspect = 2, ConnectionFailed = 3 }
Public Enum ConnectionStatusEnum ConnectionNotConnected = 0 ConnectionHealthy = 1 ConnectionSuspect = 2 ConnectionFailed = 3 End Enum
Members |
Description |
ConnectionNotConnected = 0 |
The connection was never established. |
ConnectionHealthy = 1 |
The connection is healthy. |
ConnectionSuspect = 2 |
Transient problems have been detected. |
ConnectionFailed = 3 |
The connection has been broken. |
adTempus API Reference version 3.0.0.0, revised 10/30/2008
|