IsolatedStorage Data type
Version: Available or changed with runtime version 2.0.
Provides data isolation for extensions.
Static methods
The following methods are available on the IsolatedStorage data type.
Method name | Description |
---|---|
Contains(Text [, DataScope]) | Determines whether the storage contains a value with the specified key. |
Contains(Text [, DataScope], var Boolean) | Determines whether the storage contains a value with the specified key. |
Delete(Text [, DataScope]) | Deletes the value with the specified key from the isolated storage. |
Get(Text [, DataScope], var Text) | Gets the value associated with the specified key. |
Get(Text, var Text) | Gets the value associated with the specified key. |
Get(Text [, DataScope], var SecretText) | Gets the value associated with the specified key. |
Get(Text, var SecretText) | Gets the value associated with the specified key. |
Set(Text, Text [, DataScope]) | Sets the value associated with the specified key. |
Set(Text, SecretText [, DataScope]) | Sets the value associated with the specified key. |
SetEncrypted(Text, Text [, DataScope]) | Encrypts and sets the value associated with the specified key. The input string cannot exceed a length of 215 plain characters; be aware that special characters take up more space. |
SetEncrypted(Text, SecretText [, DataScope]) | Encrypts and sets the value associated with the specified key. The input string cannot exceed a length of 215 plain characters; be aware that special characters take up more space. |