namespace SocketHttpListener
{
///
/// Contains the values of the compression method used to compress the message on the WebSocket
/// connection.
///
///
/// The values of the compression method are defined in
/// Compression
/// Extensions for WebSocket.
///
public enum CompressionMethod : byte
{
///
/// Indicates non compression.
///
None,
///
/// Indicates using DEFLATE.
///
Deflate
}
}