SchemeSettingElementCollection.Item[] プロパティ

定義

SchemeSettingElementCollection クラスのインスタンスにアクセスします。

オーバーロード

名前 説明
Item[Int32]

SchemeSettingElementCollection コレクション内の指定したインデックス位置にある項目を取得します。

Item[String]

SchemeSettingElementCollection コレクションから項目を取得します。

Item[Int32]

ソース:
SchemeSettingElementCollection.cs
ソース:
SchemeSettingElementCollection.cs
ソース:
SchemeSettingElementCollection.cs
ソース:
SchemeSettingElementCollection.cs
ソース:
SchemeSettingElementCollection.cs
ソース:
SchemeSettingElementCollection.cs
ソース:
SchemeSettingElementCollection.cs
ソース:
SchemeSettingElementCollection.cs

SchemeSettingElementCollection コレクション内の指定したインデックス位置にある項目を取得します。

public:
 property System::Configuration::SchemeSettingElement ^ default[int] { System::Configuration::SchemeSettingElement ^ get(int index); };
public System.Configuration.SchemeSettingElement this[int index] { get; }
member this.Item(int) : System.Configuration.SchemeSettingElement
Default Public ReadOnly Property Item(index As Integer) As SchemeSettingElement

パラメーター

index
Int32

返す SchemeSettingElement のインデックス。

プロパティ値

指定した SchemeSettingElement

例外

index パラメーターが 0 未満です。

-又は-

パラメーターで指定された項目が null されているか、削除されています。

注釈

Item[] プロパティを使用して、このSchemeSettingElement クラスに含まれる指定したSchemeSettingElementCollection オブジェクトを取得または設定します。

こちらもご覧ください

適用対象

Item[String]

ソース:
SchemeSettingElementCollection.cs
ソース:
SchemeSettingElementCollection.cs
ソース:
SchemeSettingElementCollection.cs
ソース:
SchemeSettingElementCollection.cs
ソース:
SchemeSettingElementCollection.cs
ソース:
SchemeSettingElementCollection.cs
ソース:
SchemeSettingElementCollection.cs
ソース:
SchemeSettingElementCollection.cs

SchemeSettingElementCollection コレクションから項目を取得します。

public:
 property System::Configuration::SchemeSettingElement ^ default[System::String ^] { System::Configuration::SchemeSettingElement ^ get(System::String ^ name); };
public System.Configuration.SchemeSettingElement this[string name] { get; }
member this.Item(string) : System.Configuration.SchemeSettingElement
Default Public ReadOnly Property Item(name As String) As SchemeSettingElement

パラメーター

name
String

コレクション内の SchemeSettingElement オブジェクトへの文字列参照。

プロパティ値

コレクションに含まれる SchemeSettingElement オブジェクト。

注釈

戻り値は、項目が見つからないか削除された場合に null されます。

こちらもご覧ください

適用対象