IHttpHandler.cs 155 B

123456789
  1. using System.Net;
  2. namespace ET.Server
  3. {
  4. public interface IHttpHandler
  5. {
  6. ETTask Handle(Entity domain, HttpListenerContext context);
  7. }
  8. }