[Modify] Edit it
This commit is contained in:
parent
e7bab7a9a9
commit
4722a90738
@ -320,14 +320,26 @@ namespace WebSocketSharp
|
|||||||
#region Public Properties
|
#region Public Properties
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the compression method used to compress a message on
|
/// Gets or sets the compression method used to compress a message.
|
||||||
/// the WebSocket connection.
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// The set operation does nothing if the connection has already been
|
||||||
|
/// established or it is closing.
|
||||||
|
/// </remarks>
|
||||||
/// <value>
|
/// <value>
|
||||||
/// One of the <see cref="CompressionMethod"/> enum values that specifies
|
/// <para>
|
||||||
/// the compression method used to compress a message. The default value is
|
/// One of the <see cref="CompressionMethod"/> enum values.
|
||||||
/// <see cref="CompressionMethod.None"/>.
|
/// </para>
|
||||||
|
/// <para>
|
||||||
|
/// It represents the compression method used to compress a message.
|
||||||
|
/// </para>
|
||||||
|
/// <para>
|
||||||
|
/// The default value is <see cref="CompressionMethod.None"/>.
|
||||||
|
/// </para>
|
||||||
/// </value>
|
/// </value>
|
||||||
|
/// <exception cref="InvalidOperationException">
|
||||||
|
/// The set operation cannot be used by servers.
|
||||||
|
/// </exception>
|
||||||
public CompressionMethod Compression {
|
public CompressionMethod Compression {
|
||||||
get {
|
get {
|
||||||
return _compression;
|
return _compression;
|
||||||
|
Loading…
Reference in New Issue
Block a user