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::GetEnumerator Method ()

 

Returns an enumerator for the permissions of the set.

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

public:
virtual IEnumerator^ GetEnumerator() sealed

Return Value

Type: System.Collections::IEnumerator^

An enumerator object for the permissions of the set.

Use the enumerator as an index to access individual permission objects in the set.

Notes to Inheritors:

When you inherit from PermissionSet, you can change the behavior of the GetEnumerator method by overriding the GetEnumeratorImpl method.

The following code example shows the use of the GetEnumerator method to list all the permissions in a permission set. This code example is part of a larger example provided for the PermissionSet class.

// Display results of PermissionSet::GetEnumerator.
IEnumerator^ psEnumerator = ps1->GetEnumerator();
while ( psEnumerator->MoveNext() )
{
   Console::WriteLine( psEnumerator->Current );
}

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