AuthorizationRuleCollection.Get(Int32) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定されたインデックス位置にある AuthorizationRule を取得します。
public:
System::Web::Configuration::AuthorizationRule ^ Get(int index);
public System.Web.Configuration.AuthorizationRule Get (int index);
member this.Get : int -> System.Web.Configuration.AuthorizationRule
Public Function Get (index As Integer) As AuthorizationRule
パラメーター
- index
- Int32
AuthorizationRule インデックス。
戻り値
指定したインデックスにある AuthorizationRule です。
例
Get メソッドを使用するコード例を次に示します。 コレクションを取得する方法については、クラス トピックの AuthorizationSection コード例を参照してください。
// Using the AuthorizationRuleCollection Get method.
AuthorizationRule authRule =
authorizationRuleCollection.Get(0);
' Using the AuthorizationRuleCollection Get method.
Dim authRule As AuthorizationRule = _
authorizationRuleCollection.Get(0)
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET