void holdContentUpdate()
Pauses the current content update after downloading.
Security
Trust Level Required: Full trust
Return
Void.
Examples
function toggleUpdateStatus(hold) {
if(hold) {
//KioWare will not perform a content update when the current session ends
KioWareUtils.holdContentUpdate();
} else {
//KioWare will perform a content update when the current session ends
KioWareUtils.resumeContentUpdate();
}
}