[Modify] Edit it

This commit is contained in:
sta 2017-05-19 15:21:57 +09:00
parent 5211d3c8a5
commit ea63a299f9

View File

@ -609,22 +609,32 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Gets or sets the delegate used to find the credentials for an identity. /// Gets or sets the delegate used to find the credentials for
/// an identity.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// The set operation does nothing if the server has already started or /// <para>
/// it is shutting down. /// The set operation does nothing if the server has already
/// started or it is shutting down.
/// </para>
/// <para>
/// No credentials are found if the method invoked by
/// the delegate returns <see langword="null"/> or
/// the value is <see langword="null"/>.
/// </para>
/// </remarks> /// </remarks>
/// <value> /// <value>
/// <para> /// <para>
/// A <c>Func&lt;IIdentity, NetworkCredential&gt;</c> delegate or /// A <c>Func&lt;IIdentity, NetworkCredential&gt;</c> delegate or
/// <see langword="null"/> if not needed. The default value is /// <see langword="null"/> if not needed.
/// <see langword="null"/>.
/// </para> /// </para>
/// <para> /// <para>
/// That delegate invokes the method called for finding /// That delegate invokes the method called for finding
/// the credentials used to authenticate a client. /// the credentials used to authenticate a client.
/// </para> /// </para>
/// <para>
/// The default value is <see langword="null"/>.
/// </para>
/// </value> /// </value>
public Func<IIdentity, NetworkCredential> UserCredentialsFinder { public Func<IIdentity, NetworkCredential> UserCredentialsFinder {
get { get {