[Modify] To internal

This commit is contained in:
sta 2019-05-17 20:56:20 +09:00
parent 0615ae75d7
commit 269bc27b42

View File

@ -374,7 +374,7 @@ namespace WebSocketSharp.Net
} }
/// <summary> /// <summary>
/// Gets or sets the value of the CommentURL attribute of the cookie. /// Gets the value of the CommentURL attribute of the cookie.
/// </summary> /// </summary>
/// <value> /// <value>
/// <para> /// <para>
@ -382,7 +382,7 @@ namespace WebSocketSharp.Net
/// the comment to document intended use of the cookie. /// the comment to document intended use of the cookie.
/// </para> /// </para>
/// <para> /// <para>
/// <see langword="null"/> if this attribute is not needed. /// <see langword="null"/> if the cookie has no CommentURL attribute.
/// </para> /// </para>
/// <para> /// <para>
/// The default value is <see langword="null"/>. /// The default value is <see langword="null"/>.
@ -393,7 +393,7 @@ namespace WebSocketSharp.Net
return _commentUri; return _commentUri;
} }
set { internal set {
_commentUri = value; _commentUri = value;
} }
} }