SettingsProviderCollection.Item[String] Property

Definition

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

name
String

A String containing the friendly name of the settings provider.

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