From 269bc27b429f69020757effbceb250e691cde254 Mon Sep 17 00:00:00 2001 From: sta Date: Fri, 17 May 2019 20:56:20 +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 5795ddc7..0f8fa04e 100644 --- a/websocket-sharp/Net/Cookie.cs +++ b/websocket-sharp/Net/Cookie.cs @@ -374,7 +374,7 @@ namespace WebSocketSharp.Net } /// - /// Gets or sets the value of the CommentURL attribute of the cookie. + /// Gets the value of the CommentURL attribute of the cookie. /// /// /// @@ -382,7 +382,7 @@ namespace WebSocketSharp.Net /// the comment to document intended use of the cookie. /// /// - /// if this attribute is not needed. + /// if the cookie has no CommentURL attribute. /// /// /// The default value is . @@ -393,7 +393,7 @@ namespace WebSocketSharp.Net return _commentUri; } - set { + internal set { _commentUri = value; } }