using System; namespace Org.BouncyCastle.Tls { /// RFC 6520 3. public abstract class HeartbeatMessageType { public const short heartbeat_request = 1; public const short heartbeat_response = 2; public static string GetName(short heartbeatMessageType) { switch (heartbeatMessageType) { case heartbeat_request: return "heartbeat_request"; case heartbeat_response: return "heartbeat_response"; default: return "UNKNOWN"; } } public static string GetText(short heartbeatMessageType) { return GetName(heartbeatMessageType) + "(" + heartbeatMessageType + ")"; } public static bool IsValid(short heartbeatMessageType) { return heartbeatMessageType >= heartbeat_request && heartbeatMessageType <= heartbeat_response; } } }