WebServiceHandlerFactory.GetHandler メソッド

定義

IHttpHandler のインスタンスを返します。

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

パラメーター

context
HttpContext

HTTP 要求を処理するために使用する、組み込みのサーバー オブジェクト (HttpContextRequestResponseSession など) への参照を提供する Server

verb
String

クライアントが使用する HTTP データ転送メソッド (GET または POST)。

url
String

要求されたリソースの生の URL。

filePath
String

要求されたリソースのファイル システム パス。

戻り値

IHttpHandler のインスタンス。

実装

適用対象