Evidence::GetHostEnumerator Method ()

 

Enumerates evidence supplied by the host.

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

public:
IEnumerator^ GetHostEnumerator()

Return Value

Type: System.Collections::IEnumerator^

An enumerator for evidence added by the AddHost method.

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

Url^ url = gcnew Url( "http://www.treyresearch.com" );
Console::WriteLine( "Adding host evidence {0}", url );
ev2a->AddHost( url );
Evidence^ ev2b = gcnew Evidence( ev2a );
Console::WriteLine( "Copy evidence into new evidence" );
IEnumerator^ enum1 = ev2b->GetHostEnumerator();
enum1->MoveNext();
Console::WriteLine( enum1->Current );

.NET Framework
Available since 1.1
Return to top
Show: