You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
701 B
24 lines
701 B
using System.ComponentModel;
|
|
|
|
namespace MultiTerm.Protocols.Types;
|
|
|
|
public enum ProtocolConnectionState
|
|
{
|
|
/// <summary>
|
|
/// Indicates that the protocol is currently not connected or has not yet been connected.
|
|
/// </summary>
|
|
[Description("Not Connected")]
|
|
NotConnected,
|
|
|
|
/// <summary>
|
|
/// Indicates that the protocol is currently connected and ready to transmit/receive data.
|
|
/// </summary>
|
|
[Description("Connected")]
|
|
Connected,
|
|
|
|
/// <summary>
|
|
/// Indicates that the protocol disconnected unintentionally (e.g. device connection was interrupted).
|
|
/// </summary>
|
|
[Description("Unintentionally Disconnected")]
|
|
UnintentionallyDisconnected
|
|
}
|
|
|