[Modify] Polish it
This commit is contained in:
parent
efcf714a5f
commit
f23a7a39e7
@ -116,18 +116,24 @@ namespace WebSocketSharp.Server
|
|||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the delegate called to validate the HTTP cookies included in
|
/// Gets or sets the delegate called to validate the HTTP cookies included in
|
||||||
/// a connection request to the WebSocket service.
|
/// a handshake request to the WebSocket service.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// This delegate is called when the <see cref="WebSocket"/> used in a session validates
|
/// This delegate is called when the <see cref="WebSocket"/> used in a session validates
|
||||||
/// the connection request.
|
/// the handshake request.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <value>
|
/// <value>
|
||||||
/// <para>
|
/// <para>
|
||||||
/// A <c>Func<CookieCollection, CookieCollection, bool></c> delegate that references
|
/// A <c>Func<CookieCollection, CookieCollection, bool></c> delegate that references
|
||||||
/// the method(s) used to validate the cookies. 1st <see cref="CookieCollection"/> passed to
|
/// the method(s) used to validate the cookies.
|
||||||
/// this delegate contains the cookies to validate if any. 2nd <see cref="CookieCollection"/>
|
/// </para>
|
||||||
/// passed to this delegate receives the cookies to send to the client.
|
/// <para>
|
||||||
|
/// 1st <see cref="CookieCollection"/> parameter passed to this delegate contains
|
||||||
|
/// the cookies to validate if any.
|
||||||
|
/// </para>
|
||||||
|
/// <para>
|
||||||
|
/// 2nd <see cref="CookieCollection"/> parameter passed to this delegate receives
|
||||||
|
/// the cookies to send to the client.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// <para>
|
/// <para>
|
||||||
/// This delegate should return <c>true</c> if the cookies are valid.
|
/// This delegate should return <c>true</c> if the cookies are valid.
|
||||||
|
Loading…
Reference in New Issue
Block a user