WebServiceHandlerFactory.cs 817 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // System.Web.Services.Protocols.WebServiceHandlerFactory.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.Web.Services;
  10. namespace System.Web.Services.Protocols {
  11. public class WebServiceHandlerFactory : IHttpHandlerFactory {
  12. #region Constructors
  13. [MonoTODO]
  14. public WebServiceHandlerFactory ()
  15. {
  16. throw new NotImplementedException ();
  17. }
  18. #endregion // Constructors
  19. #region Methods
  20. [MonoTODO]
  21. public IHttpHandler GetHandler (HttpContext context, string verb, string url, string filePath)
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. [MonoTODO]
  26. public void ReleaseHandler (IHttpHandler handler)
  27. {
  28. throw new NotImplementedException ();
  29. }
  30. #endregion // Methods
  31. }
  32. }