[Modify] Add it

This commit is contained in:
sta 2018-08-12 21:10:56 +09:00
parent 9fb42cf86f
commit bae1b87faf

View File

@ -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>
/// Gets the management function for the sessions in the service.
/// </summary>