namespace EmbedIO.WebSockets.Internal
{
///
/// Indicates whether the payload data of a WebSocket frame is masked.
///
///
/// The values of this enumeration are defined in
/// Section 5.2 of RFC 6455.
///
internal enum Mask : byte
{
///
/// Equivalent to numeric value 0. Indicates not masked.
///
Off = 0x0,
///
/// Equivalent to numeric value 1. Indicates masked.
///
On = 0x1,
}
}