DiscoveryClientResult Class
Represents the details of a discovery reference without the contents of the referenced document. This class cannot be inherited.
Assembly: System.Web.Services (in System.Web.Services.dll)
The DiscoveryClientResult type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | DiscoveryClientResult() | Initializes a new instance of the DiscoveryClientResult class. |
![]() | DiscoveryClientResult(Type, String, String) | Initializes a new instance of the DiscoveryClientResult class and sets the ReferenceTypeName property to referenceType, the Url property to url and the Filename property to filename. |
| Name | Description | |
|---|---|---|
![]() | Filename | Gets or sets the name of the file in which the reference is saved. |
![]() | ReferenceTypeName | Name of the class representing the type of reference in the discovery document. |
![]() | Url | Gets or sets the URL for the reference. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
Using the WriteAll method of DiscoveryClientProtocol, all valid referenced documents and a file containing a map of all save documents can be written to disk. The file containing a map of all saved documents contains the details of each document as summarized by the properties of DiscoveryClientResult.
After the referenced documents and the map of the referenced documents have been written to disk using the WriteAll method, you can invoke the ReadAll method to read the discovery documents.
#using <System.Web.Services.dll> #using <System.dll> using namespace System; using namespace System::Web::Services::Discovery; int main() { try { DiscoveryClientProtocol^ myDiscoveryClientProtocol = gcnew DiscoveryClientProtocol; // Get the collection holding DiscoveryClientResult objects. DiscoveryClientResultCollection^ myDiscoveryClientResultCollection = myDiscoveryClientProtocol->ReadAll( "results.discomap" ); Console::WriteLine( "The number of DiscoveryClientResult objects: {0}", myDiscoveryClientResultCollection->Count ); Console::WriteLine( "Displaying the items in the collection:" ); // Iterate through the collection and display the properties // of each DiscoveryClientResult in it. System::Collections::IEnumerator^ myEnum = myDiscoveryClientResultCollection->GetEnumerator(); while ( myEnum->MoveNext() ) { DiscoveryClientResult^ myDiscoveryClientResult = safe_cast<DiscoveryClientResult^>(myEnum->Current); Console::WriteLine( "Type of reference in the discovery document: {0}", myDiscoveryClientResult->ReferenceTypeName ); Console::WriteLine( "Url for the reference: {0}", myDiscoveryClientResult->Url ); Console::WriteLine( "File for saving the reference: {0}", myDiscoveryClientResult->Filename ); } } catch ( Exception^ e ) { Console::WriteLine( "Error is {0}", e->Message ); } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.


