IBI-helpMe

ibihelpme_QuerySystemInformationAsync

Signature

ibihelpme_QuerySystemInformationAsync(key: string, callback: (string) => void): void

Description

Determines the system information value for the key. When the task is completed, the method reference transfered under callback is called up

Available from API version

1.0.0

Parameter

Name

Type

Description

key

string

Encryption key for the information to be determined

callback

(string) => void

Reference to a method without a return value that receives a string object as a parameter.

Return value

No return value

Example

JavaScript
var key = 'Local.Username';
window.external.ibihelpme_QuerySystemInformationAsync(key, function(value) {
	refreshSystemInformationItem(key, value);
});