Application.getSecureVar() | This page was last modified over 30 day(s) ago and has 0 comment(s)
|
Back to Application Class Summary |
Availability |
Windows, Mac OSX, Linux |
Usage |
mdm.Application.getSecureVar(varName:String):String |
Parameters |
varName:String - Secure variable name |
Returns |
A String |
Description |
Returns the value of the specified secure variable from the application. You could use Secured Variables to store data intended to be protected with cryptographic algorithms within application binary data. |
Notes |
If no value is found null string will be returned as special return type to denote specific situation Secure variables are set in the Zinc IDE. More information on secure variables can be found on this page. |
Example Code |
//Retrieves a secure variable called 'mySecureVar' var mySecureVar:String = mdm.Application.getSecureVar("mySecureVar"); if(mySecureVar) { } |
mdm.Application Class Example Downloads |
No Example Downloads Available |
![]() |
Registered Users must be logged in to 'MyAccount' to add a Comment - Log In Here |
After Logging In, Click Here to Refresh This Page |