HandshakeRequest.cs 432 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace SuperWebSocket.Protocol
  6. {
  7. /// <summary>
  8. /// Handshake request
  9. /// </summary>
  10. class HandshakeRequest : IWebSocketFragment
  11. {
  12. /// <summary>
  13. /// Gets the key of this request.
  14. /// </summary>
  15. public string Key
  16. {
  17. get { return OpCode.HandshakeTag; }
  18. }
  19. }
  20. }