[Modify] To internal

This commit is contained in:
sta 2019-05-16 21:30:34 +09:00
parent 95bfb94048
commit 0615ae75d7

View File

@ -349,7 +349,7 @@ namespace WebSocketSharp.Net
#region Public Properties #region Public Properties
/// <summary> /// <summary>
/// Gets or sets the value of the Comment attribute of the cookie. /// Gets the value of the Comment attribute of the cookie.
/// </summary> /// </summary>
/// <value> /// <value>
/// <para> /// <para>
@ -357,7 +357,7 @@ namespace WebSocketSharp.Net
/// intended use of the cookie. /// intended use of the cookie.
/// </para> /// </para>
/// <para> /// <para>
/// An empty string if this attribute is not needed. /// An empty string if the cookie has no Comment attribute.
/// </para> /// </para>
/// <para> /// <para>
/// The default value is an empty string. /// The default value is an empty string.
@ -368,7 +368,7 @@ namespace WebSocketSharp.Net
return _comment ?? String.Empty; return _comment ?? String.Empty;
} }
set { internal set {
_comment = value; _comment = value;
} }
} }