You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
319 B
14 lines
319 B
3 years ago
|
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;
|
||
|
}
|
||
|
}
|