#region --------------- Copyright Dresser Wayne Pignone ------------- /* * $Log: /Wrk/Support/ForecourtControl/Wrk/ForecourtControl/Com/DeviceConnectionState.cs $ * * 2 07-01-05 9:00 roger.månsson */ #endregion using System.Runtime.InteropServices; namespace Wayne.ForecourtControl.Com { /// /// The state of the connection to a device. /// [ComVisible(true)] public enum DeviceConnectionState { #region Fields /// /// Unknown state of the connection. /// Unknown, /// /// Device is not connected. /// Disconnected, /// /// Trying to connect to device. /// Connecting, /// /// Connected to device. /// Connected, /// /// Disconnecting from device /// Disconnecting #endregion } }