|
|
|
|
@ -31,18 +31,17 @@ using System;
|
|
|
|
|
namespace WebSocketSharp
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Specifies the compression method used to compress a message on
|
|
|
|
|
/// the WebSocket connection.
|
|
|
|
|
/// Specifies the method for compression.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// The compression methods that can be used are defined in
|
|
|
|
|
/// The methods are defined in
|
|
|
|
|
/// <see href="https://tools.ietf.org/html/rfc7692">
|
|
|
|
|
/// Compression Extensions for WebSocket</see>.
|
|
|
|
|
/// </remarks>
|
|
|
|
|
public enum CompressionMethod : byte
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Specifies non compression.
|
|
|
|
|
/// Specifies no compression.
|
|
|
|
|
/// </summary>
|
|
|
|
|
None,
|
|
|
|
|
/// <summary>
|
|
|
|
|
|