From 0615ae75d738b0f29f76afabbfd9b17aef099ece Mon Sep 17 00:00:00 2001 From: sta Date: Thu, 16 May 2019 21:30:34 +0900 Subject: [PATCH] [Modify] To internal --- websocket-sharp/Net/Cookie.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } }