Partager via


SettingsCollection<T>.Item Property (String)

 

Gets or sets an item based on the specified key.

Namespace:   Microsoft.WindowsServerSolutions.Settings
Assembly:  SettingsObjectModel (in SettingsObjectModel.dll)

Syntax

public T this[
    string index
] { get; set; }
public:
property T default[
    String^ index
] {
    T get(String^ index);
    void set(String^ index, T value);
}
Public Property Item (
    index As String
) As T

Parameters

Property Value

Type: T

The found item, or null if it does not exist.

See Also

SettingsCollection<T> Class
Microsoft.WindowsServerSolutions.Settings Namespace

Return to top