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
,這會傳回零,因為不會使用實際的許可權物件實例。