mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-13 07:11:56 +01:00
24 lines
673 B
C#
24 lines
673 B
C#
|
namespace FabAccessAPI
|
|||
|
{
|
|||
|
public enum ConnectionStatusChange
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Client has established connection to server.
|
|||
|
/// </summary>
|
|||
|
Connected,
|
|||
|
/// <summary>
|
|||
|
/// Client has closed connection to server.
|
|||
|
/// </summary>
|
|||
|
Disconnected,
|
|||
|
/// <summary>
|
|||
|
/// Connection was lost and Client has reestablished connection to server.
|
|||
|
/// </summary>
|
|||
|
Reconnected,
|
|||
|
/// <summary>
|
|||
|
/// Connection was lost and can be reestablished with reconnect
|
|||
|
/// Connection should be closed if reconnecting fails.
|
|||
|
/// </summary>
|
|||
|
ConnectionLoss
|
|||
|
}
|
|||
|
}
|