From 15e723ed995015674959bd3938fd41fadc13dc2a Mon Sep 17 00:00:00 2001 From: sta Date: Thu, 7 Mar 2019 21:13:18 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/Net/Cookie.cs | 36 +++++++++++++++++++++++------------ 1 file changed, 24 insertions(+), 12 deletions(-) diff --git a/websocket-sharp/Net/Cookie.cs b/websocket-sharp/Net/Cookie.cs index bacaf9d3..17a17684 100644 --- a/websocket-sharp/Net/Cookie.cs +++ b/websocket-sharp/Net/Cookie.cs @@ -196,43 +196,55 @@ namespace WebSocketSharp.Net } /// - /// Initializes a new instance of the class with the specified - /// , , , and - /// . + /// Initializes a new instance of the class with + /// the specified name, value, path, and domain. /// /// - /// A that represents the Name of the cookie. + /// A that specifies the Name of the cookie. /// /// - /// A that represents the Value of the cookie. + /// A that specifies the Value of the cookie. /// /// - /// A that represents the value of the Path attribute of the cookie. + /// A that specifies the value of the Path + /// attribute of the cookie. /// /// - /// A that represents the value of the Domain attribute of the cookie. + /// A that specifies the value of the Domain + /// attribute of the cookie. /// - /// + /// /// - /// is or empty. + /// is . /// /// /// - or - /// /// - /// contains an invalid character. + /// is . + /// + /// + /// + /// + /// is an empty string. /// /// /// - or - /// /// - /// is . + /// starts with a dollar sign. /// /// /// - or - /// /// - /// contains a string not enclosed in double quotes + /// contains an invalid character. + /// + /// + /// - or - + /// + /// + /// is a string not enclosed in double quotes /// that contains an invalid character. /// ///