HttpComponent.cs 286 B

1234567891011121314
  1. using System.Collections.Generic;
  2. using System.Net;
  3. namespace ET
  4. {
  5. /// <summary>
  6. /// http请求分发器
  7. /// </summary>
  8. public class HttpComponent: Entity
  9. {
  10. public HttpListener Listener;
  11. public Dictionary<string, IHttpHandler> dispatcher;
  12. }
  13. }