diff --git a/websocket-sharp/Net/Cookie.cs b/websocket-sharp/Net/Cookie.cs index ca8fb00a..5795ddc7 100644 --- a/websocket-sharp/Net/Cookie.cs +++ b/websocket-sharp/Net/Cookie.cs @@ -349,7 +349,7 @@ namespace WebSocketSharp.Net #region Public Properties /// - /// Gets or sets the value of the Comment attribute of the cookie. + /// Gets the value of the Comment attribute of the cookie. /// /// /// @@ -357,7 +357,7 @@ namespace WebSocketSharp.Net /// intended use of the cookie. /// /// - /// An empty string if this attribute is not needed. + /// An empty string if the cookie has no Comment attribute. /// /// /// The default value is an empty string. @@ -368,7 +368,7 @@ namespace WebSocketSharp.Net return _comment ?? String.Empty; } - set { + internal set { _comment = value; } }