StringCommandBase.cs 769 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using SuperSocket.SocketBase.Protocol;
  6. namespace SuperSocket.SocketBase.Command
  7. {
  8. /// <summary>
  9. /// A command type for whose request info type is StringRequestInfo
  10. /// </summary>
  11. /// <typeparam name="TAppSession">The type of the app session.</typeparam>
  12. public abstract class StringCommandBase<TAppSession> : CommandBase<TAppSession, StringRequestInfo>
  13. where TAppSession : IAppSession, IAppSession<TAppSession, StringRequestInfo>, new()
  14. {
  15. }
  16. /// <summary>
  17. /// A command type for whose request info type is StringRequestInfo
  18. /// </summary>
  19. public abstract class StringCommandBase : StringCommandBase<AppSession>
  20. {
  21. }
  22. }