Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
index
Type: System.StringThe key of the item.
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