Browse Source

[Modify] Polish it

pull/298/merge
sta 4 months ago
parent
commit
556e6dace4
  1. 4
      websocket-sharp/Server/WebSocketBehavior.cs

4
websocket-sharp/Server/WebSocketBehavior.cs

@ -133,7 +133,7 @@ namespace WebSocketSharp.Server
/// </para>
/// </value>
/// <exception cref="InvalidOperationException">
/// The get operation is not available when the session has not started yet.
/// The session has not started yet.
/// </exception>
protected NameValueCollection QueryString {
get {
@ -164,7 +164,7 @@ namespace WebSocketSharp.Server
protected WebSocketState ReadyState {
get {
if (_websocket == null) {
var msg = "The session has not started yet.";
var msg = "The get operation is not available.";
throw new InvalidOperationException (msg);
}

Loading…
Cancel
Save