共用方式為


PageHandlerFactory.GetHandler(HttpContext, String, String, String) 方法

定義

傳回 IHttpHandler 介面的執行個體,以處理所要求的資源。

public:
 virtual System::Web::IHttpHandler ^ GetHandler(System::Web::HttpContext ^ context, System::String ^ requestType, System::String ^ virtualPath, System::String ^ path);
public virtual System.Web.IHttpHandler GetHandler (System.Web.HttpContext context, string requestType, string virtualPath, string path);
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 Overridable Function GetHandler (context As HttpContext, requestType As String, virtualPath As String, path As String) As IHttpHandler

參數

context
HttpContext

HttpContext 類別的執行個體,提供對內建伺服器物件 (例如,Request、Response、Session 和 Server) 的參考,用以服務 HTTP 要求。

requestType
String

用戶端使用的 HTTP 資料傳輸方法 (GET 或 POST)。

virtualPath
String

所要求之資源的虛擬路徑。

path
String

所要求之資源的 PhysicalApplicationPath 屬性。

傳回

會處理要求的新 IHttpHandler,否則為 null

實作

備註

方法 GetHandler 是由 ASP.NET 執行時間呼叫,並傳回介面或 IHttpHandlernull 的有效實例。

適用於

另請參閱