jsexecutor class : Token getter
Description
Returns the access string for the JavaScript extension.
Syntax
instance.Token
Arguments
None.
Return value
Class | Description |
string | The access string for the JavaScript extension. |
Sample code
1: | jsexecutor jse = new jsexecutor(); |
2: | string tokenStr = jse.Token; |
Notes
An access string is required to use JavaScript extensions. This string is automatically given as an argument for the IIFE - Immediately Invoked Function Expression -.
This getter returns an access string. Therefore, if you use this value, you can create code that uses JavaScript extensions without using IIFE conversion by the system.
Links for reference
None.