namespace EmbedIO.WebSockets.Internal
{
///
/// Indicates whether a WebSocket frame is the final frame of a message.
///
///
/// The values of this enumeration are defined in
/// Section 5.2 of RFC 6455.
///
internal enum Fin : byte
{
///
/// Equivalent to numeric value 0. Indicates more frames of a message follow.
///
More = 0x0,
///
/// Equivalent to numeric value 1. Indicates the final frame of a message.
///
Final = 0x1,
}
}