IHttpHandler.cs 262 B

12345678910111213141516
  1. using System.Net;
  2. namespace ETModel
  3. {
  4. public interface IHttpHandler
  5. {
  6. void Handle(HttpListenerContext context);
  7. }
  8. public abstract class AHttpHandler : IHttpHandler
  9. {
  10. public virtual void Handle(HttpListenerContext context)
  11. {
  12. }
  13. }
  14. }