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

Loading…
Cancel
Save