namespace ZB.MOM.WW.LmxProxy.Host.Domain
{
///
/// Represents the state of a SCADA client connection.
///
public enum ConnectionState
{
///
/// The client is disconnected.
///
Disconnected,
///
/// The client is in the process of connecting.
///
Connecting,
///
/// The client is connected.
///
Connected,
///
/// The client is in the process of disconnecting.
///
Disconnecting,
///
/// The client encountered an error.
///
Error,
///
/// The client is reconnecting after a connection loss.
///
Reconnecting
}
}