DekGenius.com
[ Team LiB ] Previous Section Next Section

WebServiceHandlerFactory

System.Web.Services.Protocols (system.web.services.dll)class

This class is used by ASP.NET to instantiate an appropriate HttpHandler for handling web service requests. You do not need to use this class directly in your code.

public class WebServiceHandlerFactory : System.Web.IHttpHandlerFactory {
// Public Constructors
   public WebServiceHandlerFactory( );
// Public Instance Methods
   public IHttpHandler GetHandler(                  // implements System.Web.IHttpHandlerFactory
        System.Web.HttpContext context, string verb, string url, string filePath);
   public void ReleaseHandler(                      // implements System.Web.IHttpHandlerFactory
        System.Web.IHttpHandler handler);
}
    [ Team LiB ] Previous Section Next Section