namespace EmbedIO
{
///
/// Specifies the compression method used to compress a message on
/// the WebSocket connection.
///
///
/// The compression methods that can be used are defined in
///
/// Compression Extensions for WebSocket.
///
public enum CompressionMethod : byte
{
///
/// Specifies no compression.
///
None,
///
/// Specifies "Deflate" compression.
///
Deflate,
///
/// Specifies GZip compression.
///
Gzip,
}
}