NameValueConfigurationCollection.Item[String] プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定されたパラメーターに基づいて、NameValueConfigurationElement オブジェクトを取得または設定します。
public:
property System::Configuration::NameValueConfigurationElement ^ default[System::String ^] { System::Configuration::NameValueConfigurationElement ^ get(System::String ^ name); void set(System::String ^ name, System::Configuration::NameValueConfigurationElement ^ value); };
public System.Configuration.NameValueConfigurationElement this[string name] { get; set; }
member this.Item(string) : System.Configuration.NameValueConfigurationElement with get, set
Default Public Property Item(name As String) As NameValueConfigurationElement
パラメーター
- name
- String
コレクションに格納されている NameValueConfigurationElement の名前。
プロパティ値
NameValueConfigurationElement オブジェクト。
例
次のコード例では、 プロパティの使用方法 Item[] を示します。 このコード例は、NameValueConfigurationCollection クラスのために提供されている大規模な例の一部です。
// Item property.
Console.WriteLine("Value of property 'enabled': {0}",
myNameValConfigCollection["enabled"].Value);
' Item property.
Console.WriteLine("Value of property 'enabled': {0}", myNameValConfigCollection("enabled").Value)
注釈
パラメーターに Item[] 基づいてオブジェクトを取得または設定するには、 NameValueConfigurationElement プロパティを name
使用します。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET