WebServiceHandlerFactory.GetHandler Method

Definition

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