HttpRemotingHandler.cs 611 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // System.Runtime.Remoting.Channels.Http.HttpRemotingHandler
  3. //
  4. // Authors:
  5. // Martin Willemoes Hansen ([email protected])
  6. //
  7. // (C) 2003 Martin Willemoes Hansen
  8. //
  9. using System.Web;
  10. namespace System.Runtime.Remoting.Channels.Http
  11. {
  12. public class HttpRemotingHandler : IHttpHandler
  13. {
  14. [MonoTODO]
  15. public HttpRemotingHandler()
  16. {
  17. }
  18. public bool IsReusable {
  19. [MonoTODO]
  20. get { throw new NotImplementedException(); }
  21. }
  22. [MonoTODO]
  23. public void ProcessRequest (HttpContext context)
  24. {
  25. throw new NotImplementedException();
  26. }
  27. [MonoTODO]
  28. ~HttpRemotingHandler()
  29. {
  30. }
  31. }
  32. }