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