DataProtectionPermission.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 qui indique si l’autorisation actuelle est illimitée.
public:
virtual bool IsUnrestricted();
public bool IsUnrestricted ();
abstract member IsUnrestricted : unit -> bool
override this.IsUnrestricted : unit -> bool
Public Function IsUnrestricted () As Boolean
Retours
true
si l’autorisation actuelle est illimitée ; sinon, false
.
Implémente
Exemples
L’exemple de code suivant montre l’utilisation de la IsUnrestricted méthode . Cet exemple de code fait partie d’un exemple plus grand fourni pour la DataProtectionPermission classe .
rc = sp3->IsUnrestricted();
Console::WriteLine( "Is the third permission unrestricted? {0}", (rc ? (String^)"Yes" : "No") );
rc = sp3.IsUnrestricted();
Console.WriteLine("Is the third permission unrestricted? " +
(rc ? "Yes" : "No"));
rc = sp3.IsUnrestricted()
Console.WriteLine("Is the third permission unrestricted? " + IIf(rc, "Yes", "No")) 'TODO: For performance reasons this should be changed to nested IF statements
Remarques
Une autorisation sans restriction représente l’accès à toutes les ressources protégées par l’autorisation.