HttpHandlersSection.Handlers プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
HttpHandlerActionCollection オブジェクトに格納されている HttpHandlerAction オブジェクトの HttpHandlersSection コレクションを取得します。
public:
property System::Web::Configuration::HttpHandlerActionCollection ^ Handlers { System::Web::Configuration::HttpHandlerActionCollection ^ get(); };
[System.Configuration.ConfigurationProperty("", IsDefaultCollection=true)]
public System.Web.Configuration.HttpHandlerActionCollection Handlers { get; }
[<System.Configuration.ConfigurationProperty("", IsDefaultCollection=true)>]
member this.Handlers : System.Web.Configuration.HttpHandlerActionCollection
Public ReadOnly Property Handlers As HttpHandlerActionCollection
プロパティ値
HttpHandlerActionCollection オブジェクト (つまり、ハンドラー) を格納している HttpHandlerAction。
- 属性
例
次のコード例は、ハンドラーにアクセスする方法を HttpHandlerAction 示しています。
// Get a HttpHandlerAction in the Handlers property HttpHandlerAction collection.
HttpHandlerAction httpHandler = httpHandlers[0];
' Get a HttpHandlerAction in the Handlers property HttpHandlerAction collection.
Dim httpHandler As HttpHandlerAction = httpHandlers(0)
注釈
このメソッドによって返されるプロパティ コレクションは Handlers 、基になる構成ファイル内の実際の要素を参照しません。 これは、 System.Web.Configuration 含まれているハンドラーに簡単にアクセスできるコンストラクトです。 これは、構成ファイルの要素を処理するための一般的なパターンです。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET