1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- using System;
- namespace SuperWebSocket.Protocol
- {
-
-
-
- public interface ICloseStatusCode
- {
-
-
-
- int ExtensionNotMatch { get; }
-
-
-
- int GoingAway { get; }
-
-
-
- int InvalidUTF8 { get; }
-
-
-
- int NormalClosure { get; }
-
-
-
- int NotAcceptableData { get; }
-
-
-
- int ProtocolError { get; }
-
-
-
- int TLSHandshakeFailure { get; }
-
-
-
- int TooLargeFrame { get; }
-
-
-
- int UnexpectedCondition { get; }
-
-
-
- int ViolatePolicy { get; }
-
-
-
- int NoStatusCode { get; }
- }
- }
|