Aracılığıyla paylaş


DataProtectionPermission.IsUnrestricted Yöntem

Tanım

Geçerli iznin kısıtlanmamış olup olmadığını gösteren bir değer döndürür.

public:
 virtual bool IsUnrestricted();
public bool IsUnrestricted ();
abstract member IsUnrestricted : unit -> bool
override this.IsUnrestricted : unit -> bool
Public Function IsUnrestricted () As Boolean

Döndürülenler

true geçerli izin kısıtlanmamışsa; aksi takdirde , false.

Uygulamalar

Örnekler

Aşağıdaki kod örneği yönteminin IsUnrestricted kullanımını gösterir. Bu kod örneği, sınıfı için DataProtectionPermission sağlanan daha büyük bir örneğin parçasıdır.

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

Açıklamalar

Sınırsız izin, izin tarafından korunan tüm kaynaklara erişimi temsil eder.

Şunlara uygulanır