diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs
index ae715711..bdb34758 100644
--- a/websocket-sharp/WebSocket.cs
+++ b/websocket-sharp/WebSocket.cs
@@ -320,14 +320,26 @@ namespace WebSocketSharp
#region Public Properties
///
- /// Gets or sets the compression method used to compress a message on
- /// the WebSocket connection.
+ /// Gets or sets the compression method used to compress a message.
///
+ ///
+ /// The set operation does nothing if the connection has already been
+ /// established or it is closing.
+ ///
///
- /// One of the enum values that specifies
- /// the compression method used to compress a message. The default value is
- /// .
+ ///
+ /// One of the enum values.
+ ///
+ ///
+ /// It represents the compression method used to compress a message.
+ ///
+ ///
+ /// The default value is .
+ ///
///
+ ///
+ /// The set operation cannot be used by servers.
+ ///
public CompressionMethod Compression {
get {
return _compression;