次の方法で共有


HttpModuleAction.Type プロパティ

定義

モジュール型を取得または設定します。

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

プロパティ値

モジュール型名とアセンブリ情報を含むコンマ区切りリスト。

属性

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


// Get the modules collection.
HttpModuleActionCollection httpModules2 = 
    httpModulesSection.Modules;
string typeFound = "typeName not found.";

// Find the module with the specified type.
foreach (HttpModuleAction currentModule in httpModules2)
{
    if (currentModule.Type == "typeName")
        typeFound = "typeName found.";
}
' Get the modules collection.
  Dim httpModules2 _
  As HttpModuleActionCollection = httpModulesSection.Modules
  Dim typeFound As String = _
  "typeName not found."

' Find the module with the specified type.
  Dim currentModule1 As HttpModuleAction
  For Each currentModule1 In httpModules2
      If currentModule1.Type = "typeName" Then
          typeFound = "typeName found."
      End If
  Next currentModule1

注釈

によって定義されたアセンブリを Type検索するには、ASP.NET は、最初にアプリケーションのプライベート \bin ディレクトリでアセンブリ DLL を検索し、次にシステム アセンブリ キャッシュ内で検索します。

適用対象