DiscoveryClientDocumentCollection Class
.NET Framework 3.0
Represents a collection of documents discovered during XML Web services discovery that have been downloaded to the client. This class cannot be inherited.
Namespace: System.Web.Services.Discovery
Assembly: System.Web.Services (in system.web.services.dll)
Assembly: System.Web.Services (in system.web.services.dll)
The Documents property of DiscoveryClientProtocol is of type DiscoveryClientDocumentCollection.
The following code example enacts XML Web service discovery and downloads the discovered documents to the client. The names of the discovery documents within the DiscoveryClientDocumentCollection are output to the console.
#using <System.dll> #using <System.Web.Services.dll> using namespace System; using namespace System::Net; using namespace System::IO; using namespace System::Collections; using namespace System::Web::Services::Discovery; int main() { DiscoveryClientProtocol^ myDiscoveryClientProtocol = gcnew DiscoveryClientProtocol; myDiscoveryClientProtocol->Credentials = CredentialCache::DefaultCredentials; // 'dataservice.disco' is a sample discovery document. String^ myStringUrl = "http://localhost/dataservice.disco"; // 'Discover' method is called to populate the 'Documents' property. DiscoveryDocument^ myDiscoveryDocument = myDiscoveryClientProtocol->Discover( myStringUrl ); // An instance of the 'DiscoveryClientDocumentCollection' class is created. DiscoveryClientDocumentCollection^ myDiscoveryClientDocumentCollection = myDiscoveryClientProtocol->Documents; // 'Keys' in the collection are retrieved. ICollection^ myCollection = myDiscoveryClientDocumentCollection->Keys; array<Object^>^myObjectCollection = gcnew array<Object^>(myDiscoveryClientDocumentCollection->Count); myCollection->CopyTo( myObjectCollection, 0 ); Console::WriteLine( "The discovery documents in the collection are :" ); for ( int iIndex = 0; iIndex < myObjectCollection->Length; iIndex++ ) { Console::WriteLine( myObjectCollection[ iIndex ] ); } Console::WriteLine( "" ); // 'Values' in the collection are retrieved. ICollection^ myCollection1 = myDiscoveryClientDocumentCollection->Values; array<Object^>^myObjectCollection1 = gcnew array<Object^>(myDiscoveryClientDocumentCollection->Count); myCollection1->CopyTo( myObjectCollection1, 0 ); Console::WriteLine( "The objects in the collection are :" ); for ( int iIndex = 0; iIndex < myObjectCollection1->Length; iIndex++ ) { Console::WriteLine( myObjectCollection1[ iIndex ] ); } }
System.Object
System.Collections.DictionaryBase
System.Web.Services.Discovery.DiscoveryClientDocumentCollection
System.Collections.DictionaryBase
System.Web.Services.Discovery.DiscoveryClientDocumentCollection
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: