PageHandlerFactory.GetHandler Method (HttpContext, String, String, String)
.NET Framework (current version)
Returns an instance of the IHttpHandler interface to process the requested resource.
Assembly: System.Web (in System.Web.dll)
Public Overridable Function GetHandler ( context As HttpContext, requestType As String, virtualPath As String, path As String ) As IHttpHandler
Parameters
- context
-
Type:
System.Web.HttpContext
An instance of the HttpContext class that provides references to intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests.
- requestType
-
Type:
System.String
The HTTP data transfer method (GET or POST) that the client uses.
- virtualPath
-
Type:
System.String
The virtual path to the requested resource.
- path
-
Type:
System.String
The PhysicalApplicationPath property to the requested resource.
Return Value
Type: System.Web.IHttpHandlerA new IHttpHandler that processes the request; otherwise, null.
The GetHandler method is called by the ASP.NET run time and returns either a valid instance of the IHttpHandler interface or null.
.NET Framework
Available since 2.0
Available since 2.0
Show: