[Modify] Edit it
This commit is contained in:
parent
eb14db4628
commit
8dadc6bc09
@ -590,17 +590,22 @@ namespace WebSocketSharp.Server
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the delegate called to find the credentials for
|
/// Gets or sets the delegate used to find the credentials for an identity.
|
||||||
/// an identity used to authenticate a client.
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// The set operation does nothing if the server has already started or
|
/// The set operation does nothing if the server has already started or
|
||||||
/// it is shutting down.
|
/// it is shutting down.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <value>
|
/// <value>
|
||||||
/// A <c>Func<IIdentity, NetworkCredential></c> delegate
|
/// <para>
|
||||||
/// that invokes the method used to find the credentials or
|
/// A <c>Func<IIdentity, NetworkCredential></c> delegate or
|
||||||
/// <see langword="null"/> by default.
|
/// <see langword="null"/> if not needed. The default value is
|
||||||
|
/// <see langword="null"/>.
|
||||||
|
/// </para>
|
||||||
|
/// <para>
|
||||||
|
/// That delegate invokes the method called for finding
|
||||||
|
/// the credentials used to authenticate a client.
|
||||||
|
/// </para>
|
||||||
/// </value>
|
/// </value>
|
||||||
public Func<IIdentity, NetworkCredential> UserCredentialsFinder {
|
public Func<IIdentity, NetworkCredential> UserCredentialsFinder {
|
||||||
get {
|
get {
|
||||||
|
Loading…
Reference in New Issue
Block a user