DiscoveryDocument.References Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Lista odwołań zawartych w dokumencie odnajdywania.
public:
property System::Collections::IList ^ References { System::Collections::IList ^ get(); };
public System.Collections.IList References { get; }
member this.References : System.Collections.IList
Public ReadOnly Property References As IList
Wartość właściwości
Element IList zawierający odwołania w dokumencie odnajdywania.
Przykłady
Poniższy przykład kodu wylicza odwołania do dokumentu odnajdywania.
// Enumerate the 'References' in the DiscoveryDocument.
IEnumerator^ myEnumerator = myDiscoveryDocument->References->GetEnumerator();
Console::WriteLine( "The 'References' in the discovery document are-" );
while ( myEnumerator->MoveNext() )
Console::Write( (dynamic_cast<DiscoveryDocumentReference^>(myEnumerator->Current)->Url) );
// Enumerate the 'References' in the DiscoveryDocument.
IEnumerator myEnumerator = myDiscoveryDocument.References.GetEnumerator();
Console.WriteLine( "The 'References' in the discovery document are-" );
while ( myEnumerator.MoveNext() )
{
Console.Write( ((DiscoveryDocumentReference)myEnumerator.Current).Url );
}
' Enumerate the 'References' in the DiscoveryDocument.
Dim myEnumerator As IEnumerator = myDiscoveryDocument.References.GetEnumerator()
Console.WriteLine("The 'References' in the discovery document are-")
While myEnumerator.MoveNext()
Console.Write(CType(myEnumerator.Current, DiscoveryDocumentReference).Url)
End While
Uwagi
Dokument odnajdywania zawiera odwołania do informacji o istnieniu usług sieci Web XML. Te odwołania mogą odnosić się do opisów usług, schematów XSD lub innych dokumentów odnajdywania. Właściwość References zawiera listę tych odwołań.