|
|
|
@ -357,15 +357,15 @@ namespace WebSocketSharp.Net
|
|
|
|
/// intended use of the cookie.
|
|
|
|
/// intended use of the cookie.
|
|
|
|
/// </para>
|
|
|
|
/// </para>
|
|
|
|
/// <para>
|
|
|
|
/// <para>
|
|
|
|
/// An empty string if not present.
|
|
|
|
/// <see langword="null"/> if not present.
|
|
|
|
/// </para>
|
|
|
|
/// </para>
|
|
|
|
/// <para>
|
|
|
|
/// <para>
|
|
|
|
/// The default value is an empty string.
|
|
|
|
/// The default value is <see langword="null"/>.
|
|
|
|
/// </para>
|
|
|
|
/// </para>
|
|
|
|
/// </value>
|
|
|
|
/// </value>
|
|
|
|
public string Comment {
|
|
|
|
public string Comment {
|
|
|
|
get {
|
|
|
|
get {
|
|
|
|
return _comment ?? String.Empty;
|
|
|
|
return _comment;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
internal set {
|
|
|
|
internal set {
|
|
|
|
|