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.