WebServiceHandlerFactory.cs 839 B

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