[Modify] Edit it

This commit is contained in:
sta 2021-05-01 21:50:23 +09:00
parent b30e5e52fe
commit 47fbc7c5b0

View File

@ -218,25 +218,34 @@ namespace WebSocketSharp.Net
} }
/// <summary> /// <summary>
/// Gets or sets the path to the folder in which stores the certificate files used to /// Gets or sets the path to the folder in which stores the certificate
/// authenticate the server on the secure connection. /// files used to authenticate the server on the secure connection.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para> /// <para>
/// This property represents the path to the folder in which stores the certificate files /// This property represents the path to the folder in which stores
/// associated with each port number of added URI prefixes. A set of the certificate files /// the certificate files associated with each port number of added
/// is a pair of the <c>'port number'.cer</c> (DER) and <c>'port number'.key</c> /// URI prefixes.
/// (DER, RSA Private Key).
/// </para> /// </para>
/// <para> /// <para>
/// If this property is <see langword="null"/> or empty, the result of /// A set of the certificate files is a pair of &lt;port number&gt;.cer
/// <c>System.Environment.GetFolderPath /// (DER) and &lt;port number&gt;.key (DER, RSA Private Key).
/// (<see cref="Environment.SpecialFolder.ApplicationData"/>)</c> is used as the default path. /// </para>
/// <para>
/// If this property is <see langword="null"/> or an empty string,
/// the result of <c>System.Environment.GetFolderPath (
/// <see cref="Environment.SpecialFolder.ApplicationData"/>)</c>
/// is used as the default path.
/// </para> /// </para>
/// </remarks> /// </remarks>
/// <value> /// <value>
/// A <see cref="string"/> that represents the path to the folder in which stores /// <para>
/// the certificate files. The default value is <see langword="null"/>. /// A <see cref="string"/> that represents the path to the folder
/// in which stores the certificate files.
/// </para>
/// <para>
/// The default value is <see langword="null"/>.
/// </para>
/// </value> /// </value>
/// <exception cref="ObjectDisposedException"> /// <exception cref="ObjectDisposedException">
/// This listener has been closed. /// This listener has been closed.