| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // System.Web.Services.Protocols.WebServiceHandlerFactory.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- // Dave Bettin ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Web.Services;
- using System.Web.UI;
- namespace System.Web.Services.Protocols {
- public class WebServiceHandlerFactory : IHttpHandlerFactory {
- #region Constructors
- public WebServiceHandlerFactory ()
- {
- }
-
- #endregion // Constructors
- #region Methods
- [MonoTODO]
- public IHttpHandler GetHandler (HttpContext context, string verb, string url, string filePath)
- {
- Type type = WebServiceParser.GetCompiledType(filePath, context);
- throw new NotImplementedException ();
- }
- public void ReleaseHandler (IHttpHandler handler)
- {
- }
-
- #endregion // Methods
- }
- }
|