Evidence::GetHostEnumerator Method ()
.NET Framework (current version)
Enumerates evidence supplied by the host.
Assembly: mscorlib (in mscorlib.dll)
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
Available since 1.1
Show: