HttpHandlerAction 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
設定 HttpHandlersSection 組態區段。 此類別無法獲得繼承。
public ref class HttpHandlerAction sealed : System::Configuration::ConfigurationElement
public sealed class HttpHandlerAction : System.Configuration.ConfigurationElement
type HttpHandlerAction = class
inherit ConfigurationElement
Public NotInheritable Class HttpHandlerAction
Inherits ConfigurationElement
- 繼承
範例
下列程式代碼範例示範如何使用 型別 HttpModuleAction 。
// Get the handlers.
System.Web.Configuration.HttpHandlerActionCollection httpHandlers = httpHandlersSection.Handlers;
'Get the handlers.
Dim httpHandlers As System.Web.Configuration.HttpHandlerActionCollection = httpHandlersSection.Handlers
下列組態摘錄顯示如何以宣告方式指定 區 httpHandlers
段的值。
<httpHandlers>
<add path="Calculator.custom"
type="Samples.Aspnet.SystemWebConfiguration.Calculator, CalculatorHandler"
verb="GET" validate="false" />
</httpHandlers>
備註
類別 HttpHandlerAction 提供一種方式,以程式設計方式存取和修改 add
組態區段的 httpHandlers
元素。
此類型是包含 HttpHandlerActionCollection 和型別的 HttpHandlersSection 群組的一部分。
注意
HttpHandlerAction可以根據值為 Everywhere的 section 屬性AllowDefinition,從 組態檔的相關區段讀取和寫入資訊。
ASP.NET 先在應用程式的私用 \bin 目錄中搜尋處理程式元件 DLL,然後在系統程式集緩存中搜尋。
建構函式
HttpHandlerAction(String, String, String, Boolean) |
使用傳遞的參數,初始化 HttpHandlerAction 類別的新執行個體。 |
HttpHandlerAction(String, String, String) |
使用傳遞的參數,初始化 HttpHandlerAction 類別的新執行個體。 |