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

プロパティ値

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 を検索してから、システム アセンブリ キャッシュで検索します。

適用対象