IsolatedStorage.SetEncrypted(Text, SecretText [, DataScope]) Method
Version: Available or changed with runtime version 13.0.
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.
Syntax
[Ok := ] IsolatedStorage.SetEncrypted(Key: Text, Value: SecretText [, DataScope: DataScope])
Parameters
Key
Type: Text
The key of the value to set.
Value
Type: SecretText
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.
Related information
IsolatedStorage Data Type
Getting Started with AL
Developing Extensions