[Modify] Add it
This commit is contained in:
parent
9fb42cf86f
commit
bae1b87faf
@ -108,6 +108,27 @@ namespace WebSocketSharp.Server
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the query string included in a WebSocket handshake request.
|
||||||
|
/// </summary>
|
||||||
|
/// <value>
|
||||||
|
/// <para>
|
||||||
|
/// A <see cref="NameValueCollection"/> that contains the query
|
||||||
|
/// parameters.
|
||||||
|
/// </para>
|
||||||
|
/// <para>
|
||||||
|
/// An empty collection if not included.
|
||||||
|
/// </para>
|
||||||
|
/// <para>
|
||||||
|
/// <see langword="null"/> if the session has not started yet.
|
||||||
|
/// </para>
|
||||||
|
/// </value>
|
||||||
|
protected NameValueCollection QueryString {
|
||||||
|
get {
|
||||||
|
return _context != null ? _context.QueryString : null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the management function for the sessions in the service.
|
/// Gets the management function for the sessions in the service.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
Loading…
Reference in New Issue
Block a user