From 0be811a795693c80417e117b80d0c0915f1cdc53 Mon Sep 17 00:00:00 2001 From: sta Date: Sat, 18 May 2019 17:39:28 +0900 Subject: [PATCH] [Modify] To internal --- websocket-sharp/Net/Cookie.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/websocket-sharp/Net/Cookie.cs b/websocket-sharp/Net/Cookie.cs index 0f8fa04e..8fe6df60 100644 --- a/websocket-sharp/Net/Cookie.cs +++ b/websocket-sharp/Net/Cookie.cs @@ -399,7 +399,7 @@ namespace WebSocketSharp.Net } /// - /// Gets or sets a value indicating whether the client discards the cookie + /// Gets a value indicating whether the client discards the cookie /// unconditionally when the client terminates. /// /// @@ -416,7 +416,7 @@ namespace WebSocketSharp.Net return _discard; } - set { + internal set { _discard = value; } }