123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #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
- {
- /// <summary>
- /// The state of the connection to a device.
- /// </summary>
- [ComVisible(true)]
- public enum DeviceConnectionState
- {
- #region Fields
- /// <summary>
- /// Unknown state of the connection.
- /// </summary>
- Unknown,
- /// <summary>
- /// Device is not connected.
- /// </summary>
- Disconnected,
- /// <summary>
- /// Trying to connect to device.
- /// </summary>
- Connecting,
- /// <summary>
- /// Connected to device.
- /// </summary>
- Connected,
- /// <summary>
- /// Disconnecting from device
- /// </summary>
- Disconnecting
- #endregion
- }
- }
|