HttpRemotingHandlerFactory.cs 722 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // System.Runtime.Remoting.Channels.Http.HttpRemotingHandlerFactory
  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 HttpRemotingHandlerFactory : IHttpHandlerFactory
  13. {
  14. [MonoTODO]
  15. public HttpRemotingHandlerFactory ()
  16. {
  17. }
  18. [MonoTODO]
  19. public IHttpHandler GetHandler (HttpContext context,
  20. string verb,
  21. string url,
  22. string filePath)
  23. {
  24. throw new NotImplementedException();
  25. }
  26. [MonoTODO]
  27. public void ReleaseHandler (IHttpHandler handler)
  28. {
  29. throw new NotImplementedException();
  30. }
  31. [MonoTODO]
  32. ~HttpRemotingHandlerFactory()
  33. {
  34. }
  35. }
  36. }