CortanaPermissionsManager.ArePermissionsGrantedAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Asynchronously retreives whether the specified permissions are granted.
public:
virtual IAsyncOperation<bool> ^ ArePermissionsGrantedAsync(IIterable<CortanaPermission> ^ permissions) = ArePermissionsGrantedAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<bool> ArePermissionsGrantedAsync(IIterable<CortanaPermission> const& permissions);
/// [Windows.Foundation.Metadata.RemoteAsync]
/// [Windows.Foundation.Metadata.Deprecated("ICortanaPermissionsManager is deprecated and might not work on all platforms. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 655360, "Windows.Foundation.UniversalApiContract")]
IAsyncOperation<bool> ArePermissionsGrantedAsync(IIterable<CortanaPermission> const& permissions);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<bool> ArePermissionsGrantedAsync(IEnumerable<CortanaPermission> permissions);
[Windows.Foundation.Metadata.RemoteAsync]
[Windows.Foundation.Metadata.Deprecated("ICortanaPermissionsManager is deprecated and might not work on all platforms. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 655360, "Windows.Foundation.UniversalApiContract")]
public IAsyncOperation<bool> ArePermissionsGrantedAsync(IEnumerable<CortanaPermission> permissions);
function arePermissionsGrantedAsync(permissions)
Public Function ArePermissionsGrantedAsync (permissions As IEnumerable(Of CortanaPermission)) As IAsyncOperation(Of Boolean)
Parameters
- permissions
The collection of permissions of interest.
Returns
true if permission is granted. Otherwise, false.
- Attributes
Windows requirements
App capabilities |
cortanaPermissions
|
Remarks
The CortanaPermissionManager class requires the following be added to the Package.appmanifest:
- To <Package>
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="rescap"
- Under <Capabilities>
<rescap:capability name="cortanaPermissions"/>