HttpComponent.cs 359 B

123456789101112131415
  1. using System.Collections.Generic;
  2. using System.Net;
  3. namespace ET.Server
  4. {
  5. /// <summary>
  6. /// http请求分发器
  7. /// </summary>
  8. [ComponentOf(typeof(Scene))]
  9. public class HttpComponent: Entity, IAwake<string>, IDestroy, ILoad
  10. {
  11. public HttpListener Listener;
  12. public Dictionary<string, IHttpHandler> dispatcher;
  13. }
  14. }