Xbox One 设置中的 "Access to content" 值是否可通过 Javascript UWP api 获得?

Is the "Access to content" value from the Xbox One settings available through the Javascript UWP api?

我们正在为 Xbox One 开发 UWP 应用程序。我们想通过检查当前用户的内容限制来过滤应用程序中的内容。

我们希望能够通过过滤高于用户 Access to content 设置的任何内容来为我们的应用程序获得较低的年龄分级,该设置可在 Settings->Account->Content restrictions->Access to content 中找到。但是,我们在 Javascript api.

中找不到表示此设置的任何属性

是否可以从 Javascript UWP 平台检索此设置的值?

经过大量的搜索和试验,我终于找到了解决方案:

Windows.Media.ContentRestrictions.RatedContentRestrictions()
    .getBrowsePolicyAsync()
    .then(function (result) {
        /* 
         * "result" contains a ContentRestrictionsBrowsePolicy object which 
         * provides all the information I need.
         */
    });

查看 ContentRestrictionsBrowsePolicy class 了解更多信息。