次の方法で共有


HttpHandlerAction.Type プロパティ

定義

HttpHandlerAction型を取得または設定します。

public:
 property System::String ^ Type { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("type", IsRequired=true)]
public string Type { get; set; }
[<System.Configuration.ConfigurationProperty("type", IsRequired=true)>]
member this.Type : string with get, set
Public Property Type As String

プロパティ値

HttpHandlerAction 型です。

属性

次のコード例は、 Type プロパティにアクセスする方法を示しています。

// Change the Type for the HttpHandlerAction.
httpHandler.Type = 
    "Samples.Aspnet.SystemWebConfiguration.Calculator, CalculatorHandler";
' Change the Type for the HttpHandlerAction.
httpHandler.Type = _
    "Samples.Aspnet.SystemWebConfiguration.Calculator, CalculatorHandler"

注釈

Type プロパティは、バージョン、カルチャ、公開キー トークンで構成されるコンマ区切りのクラス/アセンブリの組み合わせです。

ASP.NET 最初にアプリケーションのプライベート \bin ディレクトリでハンドラー アセンブリ DLL を検索し、次にシステム アセンブリ キャッシュ内を検索します。

適用対象