mirror of
https://gitlab.com/fabinfra/fabaccess/fabaccess-api-cs.git
synced 2025-03-12 23:01:46 +01:00
21 lines
494 B
C#
21 lines
494 B
C#
|
namespace FabAccessAPI
|
|||
|
{
|
|||
|
public enum ConnectionStatusChanged
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// API-Service has established connection to server
|
|||
|
/// </summary>
|
|||
|
Connected,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// API-Service has closed the connection to a server
|
|||
|
/// </summary>
|
|||
|
Disconnected,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Connection was lost and the API-Service will try to reconnect automatically
|
|||
|
/// </summary>
|
|||
|
ConnectionLoss
|
|||
|
}
|
|||
|
}
|