|
|
|
@ -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.
|
|
|
|
|