Anteckning
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Gets the current Unified Interface app and page details. The details include application ID(appid), pageType(pageType), record ID(id), organization geography (orgGeo) and session navigation type (navigationType).
Syntax
Microsoft.CIFramework.getEnvironment().then(successCallback, errorCallback);
Parameters
Name | Type | Required | Description |
---|---|---|---|
successCallback | Function | No | A function to call when the request for environment details is successful. |
errorCallback | Function | No | A function to call when the request for the environment fails. |
Return value
Returns a Promise object of type String with details of the current Unified Interface app and page.
Example
Microsoft.CIFramework.getEnvironment().then(
function (result) {
// result will have the information about environment.
console.log(result)
},
function (error) {
// code handling for promise failure
console.log(error)
});