IHttpHandler.cs 124 B

123456789
  1. using System.Net;
  2. namespace ETModel
  3. {
  4. public interface IHttpHandler
  5. {
  6. void Handle(HttpListenerContext context);
  7. }
  8. }