[Modify] Edit it

This commit is contained in:
sta 2021-04-30 20:34:19 +09:00
parent c255e33da5
commit 0d5d829ea7

View File

@ -170,18 +170,33 @@ namespace WebSocketSharp.Net
} }
/// <summary> /// <summary>
/// Gets or sets the delegate called to select the scheme used to authenticate the clients. /// Gets or sets the delegate called to select the scheme used to
/// authenticate the clients.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// If you set this property, the listener uses the authentication scheme selected by /// <para>
/// the delegate for each request. Or if you don't set, the listener uses the value of /// If this property is set, the listener uses the authentication
/// the <see cref="HttpListener.AuthenticationSchemes"/> property as the authentication /// scheme selected by the delegate for each request.
/// scheme for all requests. /// </para>
/// <para>
/// Or if this property is not set, the listener uses the value of
/// the <see cref="HttpListener.AuthenticationSchemes"/> property
/// as the authentication scheme for all requests.
/// </para>
/// </remarks> /// </remarks>
/// <value> /// <value>
/// A <c>Func&lt;<see cref="HttpListenerRequest"/>, <see cref="AuthenticationSchemes"/>&gt;</c> /// <para>
/// delegate that references the method used to select an authentication scheme. The default /// A <c>Func&lt;<see cref="HttpListenerRequest"/>,
/// value is <see langword="null"/>. /// <see cref="AuthenticationSchemes"/>&gt;</c> delegate or
/// <see langword="null"/> if not needed.
/// </para>
/// <para>
/// The delegate references the method used to select
/// an authentication scheme.
/// </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.