WebServiceHandlerFactory.GetHandler Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns an IHttpHandler instance.
public:
virtual System::Web::IHttpHandler ^ GetHandler(System::Web::HttpContext ^ context, System::String ^ verb, System::String ^ url, System::String ^ filePath);
public System.Web.IHttpHandler GetHandler (System.Web.HttpContext context, string verb, string url, string filePath);
abstract member GetHandler : System.Web.HttpContext * string * string * string -> System.Web.IHttpHandler
override this.GetHandler : System.Web.HttpContext * string * string * string -> System.Web.IHttpHandler
Public Function GetHandler (context As HttpContext, verb As String, url As String, filePath As String) As IHttpHandler
Parameters
- context
- HttpContext
An HttpContext that provides references to intrinsic server objects (For example, Request, Response, Session, and Server) used to service HTTP requests.
- verb
- String
The HTTP data transfer method (GET or POST) that the client uses.
- url
- String
The raw URL of the requested resource.
- filePath
- String
The file-system path of the requested resource.
Returns
An IHttpHandler instance.
Implements
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.