Office.SensitivityLabelsCatalog interface
提供方法检查 Outlook 中敏感度标签目录的状态,并在启用目录时检索所有可用的敏感度标签。
注解
最低权限级别: 读/写项
重要提示:若要在外接程序中使用敏感度标签功能,必须具有Microsoft 365 E5订阅。
若要详细了解如何在外接程序中管理敏感度标签,请参阅在撰写模式下管理邮件或约会的敏感度标签。
方法
get |
获取在 Outlook 中启用的所有敏感度标签。 |
get |
获取在 Outlook 中启用的所有敏感度标签。 |
get |
检查是否在 Outlook 中启用了敏感度标签目录。 |
get |
检查是否在 Outlook 中启用了敏感度标签目录。 |
方法详细信息
getAsync(options, callback)
获取在 Outlook 中启用的所有敏感度标签。
getAsync(options: Office.AsyncContextOptions, callback: (asyncResult: Office.AsyncResult<SensitivityLabelDetails[]>) => void): void;
参数
- options
- Office.AsyncContextOptions
包含以下一个或多个属性的对象文本:- asyncContext
:开发人员可以在回调函数中提供他们想要访问的任何对象。
- callback
-
(asyncResult: Office.AsyncResult<Office.SensitivityLabelDetails[]>) => void
方法完成后,使用单个参数 asyncResult
(即 Office.AsyncResult
对象)调用在 参数中callback
传递的函数。 在 属性中 asyncResult.value
返回可用的敏感度标签及其属性。
返回
void
注解
最低权限级别: 读/写项
重要提示:若要在外接程序中使用敏感度标签功能,必须具有Microsoft 365 E5订阅。
建议:若要确定是否在 Outlook 中启用了敏感度标签目录,请在使用 getAsync
之前调用 getIsEnabledAsync
。
若要详细了解如何在外接程序中管理敏感度标签,请参阅在撰写模式下管理邮件或约会的敏感度标签。
getAsync(callback)
获取在 Outlook 中启用的所有敏感度标签。
getAsync(callback: (asyncResult: Office.AsyncResult<SensitivityLabelDetails[]>) => void): void;
参数
- callback
-
(asyncResult: Office.AsyncResult<Office.SensitivityLabelDetails[]>) => void
方法完成后,使用单个参数 asyncResult
(即 Office.AsyncResult
对象)调用在 参数中callback
传递的函数。 在 属性中 asyncResult.value
返回可用的敏感度标签及其属性。
返回
void
注解
最低权限级别: 读/写项
重要提示:若要在外接程序中使用敏感度标签功能,必须具有Microsoft 365 E5订阅。
建议:若要确定是否在 Outlook 中启用了敏感度标签目录,请在使用 getAsync
之前调用 getIsEnabledAsync
。
若要详细了解如何在外接程序中管理敏感度标签,请参阅在撰写模式下管理邮件或约会的敏感度标签。
示例
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/60-sensitivity-label/sensitivity-labels-catalog.yaml
// This snippet gets all available sensitivity labels from the catalog.
Office.context.sensitivityLabelsCatalog.getIsEnabledAsync((asyncResult) => {
if (asyncResult.status === Office.AsyncResultStatus.Succeeded && asyncResult.value == true) {
Office.context.sensitivityLabelsCatalog.getAsync((asyncResult) => {
if (asyncResult.status === Office.AsyncResultStatus.Succeeded) {
const catalog = asyncResult.value;
console.log("Sensitivity Labels Catalog:");
console.log(JSON.stringify(catalog));
} else {
console.log("Action failed with error: " + asyncResult.error.message);
}
});
} else {
console.log("Action failed with error: " + asyncResult.error.message);
}
});
getIsEnabledAsync(options, callback)
检查是否在 Outlook 中启用了敏感度标签目录。
getIsEnabledAsync(options: Office.AsyncContextOptions, callback: (asyncResult: Office.AsyncResult<boolean>) => void): void;
参数
- options
- Office.AsyncContextOptions
包含以下一个或多个属性的对象文本:- asyncContext
:开发人员可以在回调函数中提供他们想要访问的任何对象。
- callback
-
(asyncResult: Office.AsyncResult<boolean>) => void
方法完成后,使用单个参数 asyncResult
(即 Office.AsyncResult
对象)调用在 参数中callback
传递的函数。 在 属性中 asyncResult.value
返回敏感度标签目录的状态。
返回
void
注解
最低权限级别: 读/写项
重要提示:敏感度标签目录由组织的管理员配置。 有关详细信息,请参阅 敏感度标签入门。
重要提示:若要在外接程序中使用敏感度标签功能,必须具有Microsoft 365 E5订阅。
若要详细了解如何在外接程序中管理敏感度标签,请参阅在撰写模式下管理邮件或约会的敏感度标签。
getIsEnabledAsync(callback)
检查是否在 Outlook 中启用了敏感度标签目录。
getIsEnabledAsync(callback: (asyncResult: Office.AsyncResult<boolean>) => void): void;
参数
- callback
-
(asyncResult: Office.AsyncResult<boolean>) => void
方法完成后,使用单个参数 asyncResult
(即 Office.AsyncResult
对象)调用在 参数中callback
传递的函数。 在 属性中 asyncResult.value
返回敏感度标签目录的状态。
返回
void
注解
最低权限级别: 读/写项
重要提示:敏感度标签目录由组织的管理员配置。 有关详细信息,请参阅 敏感度标签入门。
重要提示:若要在外接程序中使用敏感度标签功能,必须具有Microsoft 365 E5订阅。
若要详细了解如何在外接程序中管理敏感度标签,请参阅在撰写模式下管理邮件或约会的敏感度标签。
示例
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/60-sensitivity-label/sensitivity-labels-catalog.yaml
// This snippet determines if the sensitivity labels catalog is enabled on the current mailbox.
Office.context.sensitivityLabelsCatalog.getIsEnabledAsync((asyncResult) => {
if (asyncResult.status === Office.AsyncResultStatus.Succeeded) {
console.log(asyncResult.value);
} else {
console.log("Action failed with error: " + asyncResult.error.message);
}
});