PermissionSet.Count プロパティ

定義

アクセス権限セットに含まれるアクセス権限オブジェクトの数を取得します。

public:
 virtual property int Count { int get(); };
public virtual int Count { get; }
member this.Count : int
Public Overridable ReadOnly Property Count As Integer

プロパティ値

PermissionSet に含まれるアクセス権限オブジェクトの数。

実装

次のコード例は、 プロパティを Count 使用して、アクセス許可セット内のアクセス許可オブジェクトの数を取得する方法を示しています。 このコード例は、PermissionSet クラスのために提供されている大規模な例の一部です。

// Display the number of permissions in the set.
Console::WriteLine( "Number of permissions = {0}", ps1->Count );
// Display the number of permissions in the set.
Console.WriteLine("Number of permissions = " + ps1.Count);
' Display the number of permissions in the set.
Console.WriteLine("Number of permissions = " & ps1.Count)

注釈

Noneまたは Unrestricted の状態では、実際のアクセス許可オブジェクト インスタンスが使用されないため、これは 0 を返します。

適用対象