Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

PermissionSet::Count Property

 

Gets the number of permission objects contained in the permission set.

Namespace:   System.Security
Assembly:  mscorlib (in mscorlib.dll)

public:
property int Count {
	virtual int get();
}

Property Value

Type: System::Int32

The number of permission objects contained in the PermissionSet.

In the None or Unrestricted state this returns zero, because no actual permission object instances are used.

The following code example shows the use of the Count property to get the number of permission objects in a permission set. This code example is part of a larger example provided for the PermissionSet class.

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

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft