DataProtectionPermission.IsUnrestricted メソッド

定義

現在のアクセス許可が無制限かどうかを示す値を返します。

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

戻り値

現在のアクセス許可が無制限である場合は true。それ以外の場合は false

実装

次のコード例は、 メソッドの使用方法を IsUnrestricted 示しています。 このコード例は、DataProtectionPermission クラスのために提供されている大規模な例の一部です。

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

注釈

無制限のアクセス許可は、アクセス許可によって保護されているすべてのリソースへのアクセスを表します。

適用対象