26 lines
457 B
C#
26 lines
457 B
C#
namespace Endpoint
|
|
{
|
|
/// <summary>
|
|
/// Status of an endpoint
|
|
/// </summary>
|
|
public enum Status
|
|
{
|
|
/// <summary>
|
|
/// Service is working
|
|
/// </summary>
|
|
Up,
|
|
/// <summary>
|
|
/// Service can be resolved, but does not respond
|
|
/// </summary>
|
|
Timeout,
|
|
/// <summary>
|
|
/// Service can not be resolved
|
|
/// </summary>
|
|
Unreachable,
|
|
/// <summary>
|
|
/// Service is available, but returns an error message
|
|
/// </summary>
|
|
Error,
|
|
Unknown
|
|
}
|
|
} |