BinaryRequestInfo.cs 618 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace SuperSocket.SocketBase.Protocol
  6. {
  7. /// <summary>
  8. /// Binary type request information
  9. /// </summary>
  10. public class BinaryRequestInfo : RequestInfo<byte[]>
  11. {
  12. /// <summary>
  13. /// Initializes a new instance of the <see cref="BinaryRequestInfo"/> class.
  14. /// </summary>
  15. /// <param name="key">The key.</param>
  16. /// <param name="body">The body.</param>
  17. public BinaryRequestInfo(string key, byte[] body)
  18. : base(key, body)
  19. {
  20. }
  21. }
  22. }