[Modify] The default value is null

This commit is contained in:
sta 2019-05-21 21:18:40 +09:00
parent 4b39467cea
commit ffd331db74

View File

@ -597,15 +597,15 @@ namespace WebSocketSharp.Net
/// that the cookie applies to. /// that the cookie applies to.
/// </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 Port { public string Port {
get { get {
return _port ?? String.Empty; return _port;
} }
internal set { internal set {