SettingsProviderCollection.Item[String] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the settings provider in the collection that matches the specified name.
public:
property System::Configuration::SettingsProvider ^ default[System::String ^] { System::Configuration::SettingsProvider ^ get(System::String ^ name); };
public System.Configuration.SettingsProvider this[string name] { get; }
member this.Item(string) : System.Configuration.SettingsProvider
Default Public ReadOnly Property Item(name As String) As SettingsProvider
Parameters
Property Value
If found, the SettingsProvider whose name matches that specified by the name parameter; otherwise, null
.
Exceptions
The name
parameter is null
.
The collection is read-only when setting this value.
Remarks
You can make a SettingsProviderCollection read-only by using the SetReadOnly method. However, it is invalid to methods such as Add, Remove, and Clear on such a collection.
Applies to
See also
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET