PermissionSet.Count 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取权限集中包含的权限对象的数目。
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)
注解
在 或 Unrestricted
状态中None
,此返回零,因为未使用实际的权限对象实例。