You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
205 B

4 years ago
  1. #if !NET20
  2. namespace Apewer.WebSocket
  3. {
  4. internal enum FrameType : byte
  5. {
  6. Continuation,
  7. Text,
  8. Bytes,
  9. Close = 8,
  10. Ping = 9,
  11. Pong = 10,
  12. }
  13. }
  14. #endif