IsolatedStorage.Set(Text, Text [, DataScope]) Method

Version: Available or changed with runtime version 2.0.

Sets the value associated with the specified key.

Syntax

[Ok := ]  IsolatedStorage.Set(Key: Text, Value: Text [, DataScope: DataScope])

Parameters

Key
 Type: Text
The key of the value to set.

Value
 Type: Text
The value that will be associated with the specified key.

[Optional] DataScope
 Type: DataScope
The scope of the stored data. If a value is not passed in, the default value DataScope::Module will be used.

Return Value

[Optional] Ok
 Type: Boolean
true if the value was saved successfully, otherwise false. If you omit this optional return value and the operation does not execute successfully, a runtime error will occur.

Remarks

The Set method initiates a write transaction, which means that it cannot be succeeded by code that opens a modal page. If you want to open a modal page, it must be done before the Set method is called.

See Also

IsolatedStorage Data Type
Get Started with AL
Developing Extensions