| 1234567891011121314 |
- using System.Collections.Generic;
- using System.Net;
- namespace ET
- {
- /// <summary>
- /// http请求分发器
- /// </summary>
- public class HttpComponent: Entity, IAwake<string>, IDestroy, ILoad
- {
- public HttpListener Listener;
- public Dictionary<string, IHttpHandler> dispatcher;
- }
- }
|