IUnrestrictedPermission.IsUnrestricted Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Retourne une valeur indiquant si un accès illimité à la ressource protégée par l’autorisation est autorisé.
public:
bool IsUnrestricted();
public bool IsUnrestricted ();
abstract member IsUnrestricted : unit -> bool
Public Function IsUnrestricted () As Boolean
Retours
true
si l’utilisation sans restriction de la ressource protégée par l’autorisation est autorisée ; sinon, false
.
Exemples
L’exemple de code suivant illustre l’implémentation de la IsUnrestricted méthode. Cet exemple de code fait partie d’un exemple plus grand fourni pour la IUnrestrictedPermission classe .
// Returns true if permission is effectively unrestricted.
public:
virtual bool IsUnrestricted()
{
// This means that the object is unrestricted at runtime.
return stateFlags == SoundPermissionState::PlayAnySound;
}
// Returns true if permission is effectively unrestricted.
public Boolean IsUnrestricted()
{
// This means that the object is unrestricted at runtime.
return m_flags == SoundPermissionState.PlayAnySound;
}
' Returns true if permission is effectively unrestricted.
Public Function IsUnrestricted() As [Boolean] Implements IUnrestrictedPermission.IsUnrestricted
' This means that the object is unrestricted at runtime.
Return m_flags = SoundPermissionState.PlayAnySound
End Function 'IsUnrestricted