[Modify] To internal

This commit is contained in:
sta 2019-04-28 22:38:24 +09:00
parent 3678e6b797
commit 440698f549

View File

@ -110,16 +110,20 @@ namespace WebSocketSharp.Net
#endregion #endregion
#region Public Constructors #region Internal Constructors
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="Cookie"/> class. /// Initializes a new instance of the <see cref="Cookie"/> class.
/// </summary> /// </summary>
public Cookie () internal Cookie ()
{ {
init (String.Empty, "\"\"", String.Empty, String.Empty); init (String.Empty, "\"\"", String.Empty, String.Empty);
} }
#endregion
#region Public Constructors
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="Cookie"/> class with /// Initializes a new instance of the <see cref="Cookie"/> class with
/// the specified name and value. /// the specified name and value.