PageHandlerFactory.GetHandler(HttpContext, String, String, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回 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
的有效實例。