[Modify] Polish it

This commit is contained in:
sta 2015-12-05 13:43:46 +09:00
parent 014df48806
commit 643cc4552a

View File

@ -78,22 +78,20 @@ namespace WebSocketSharp
private NetworkCredential _credentials; private NetworkCredential _credentials;
private bool _emitOnPing; private bool _emitOnPing;
private bool _enableRedirection; private bool _enableRedirection;
private string _extensions;
private AutoResetEvent _exitReceiving; private AutoResetEvent _exitReceiving;
private string _extensions;
private Opcode _fopcode; private Opcode _fopcode;
private object _forConn; private object _forConn;
private object _forMessageEventQueue; private object _forMessageEventQueue;
private object _forSend; private object _forSend;
private MemoryStream _fragmentsBuffer; private MemoryStream _fragmentsBuffer;
private const string _guid = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11"; private const string _guid = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
private Func<WebSocketContext, string> private Func<WebSocketContext, string> _handshakeRequestChecker;
_handshakeRequestChecker;
private bool _ignoreExtensions; private bool _ignoreExtensions;
private bool _inContinuation; private bool _inContinuation;
private volatile bool _inMessage; private volatile bool _inMessage;
private volatile Logger _logger; private volatile Logger _logger;
private Action<MessageEventArgs> private Action<MessageEventArgs> _message;
_message;
private Queue<MessageEventArgs> _messageEventQueue; private Queue<MessageEventArgs> _messageEventQueue;
private uint _nonceCount; private uint _nonceCount;
private string _origin; private string _origin;