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.

Evidence::GetAssemblyEnumerator Method ()

 

Enumerates evidence provided by the assembly.

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

public:
IEnumerator^ GetAssemblyEnumerator()

Return Value

Type: System.Collections::IEnumerator^

An enumerator for evidence added by the AddAssembly method.

The following example shows the use of the GetAssemblyEnumerator method. This example is part of a larger example provided for the Evidence class.

array<Object^>^oa1 = {};
Site^ site = gcnew Site( "www.wideworldimporters.com" );
array<Object^>^oa2 = {url,site};
Evidence^ ev3a = gcnew Evidence( oa1,oa2 );
enum1 = ev3a->GetHostEnumerator();
IEnumerator^ enum2 = ev3a->GetAssemblyEnumerator();
enum2->MoveNext();
Object^ obj1 = enum2->Current;
enum2->MoveNext();
Console::WriteLine( "URL = {0}  Site = {1}", obj1, enum2->Current );

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