api.fabaccess-api-cs/FabAccessAPI/ConnectionStatusChanged.cs

21 lines
494 B
C#
Raw Permalink Normal View History

2024-03-11 22:38:56 +01:00
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
}
}