IsolatedStorageSettingsItem Property |
Gets or sets the value associated with the specified key.
Namespace: System.IO.IsolatedStorageAssembly: CSharpXamlForHtml5 (in CSharpXamlForHtml5.dll) Version: 1.0.0.0
Syntax public Object this[
string key
] { get; set; }
Parameters
- key
- Type: SystemString
The key of the item to get or set.
Return Value
Type:
Object
The value associated with the specified key. If the specified key is not
found, a get operation throws a System.Collections.Generic.KeyNotFoundException,
and a set operation creates a new element that has the specified key.
See Also