DiscoveryDocumentReference Class
Represents a reference to a discovery document. This class cannot be inherited.
Assembly: System.Web.Services (in System.Web.Services.dll)
System.Web.Services.Discovery.DiscoveryReference
System.Web.Services.Discovery.DiscoveryDocumentReference
| Name | Description | |
|---|---|---|
![]() | DiscoveryDocumentReference() | Initializes a new instance of the DiscoveryDocumentReference class. |
![]() | DiscoveryDocumentReference(String) | Initializes a new instance of the DiscoveryDocumentReference class, setting the Ref property to the value of href. |
| Name | Description | |
|---|---|---|
![]() | ClientProtocol | Gets or sets the instance of DiscoveryClientProtocol used in a discovery process.(Inherited from DiscoveryReference.) |
![]() | DefaultFilename | Gets the name of the default file to use when saving the referenced discovery document.(Overrides DiscoveryReference.DefaultFilename.) |
![]() | Document | Gets the contents of the referenced discovery document as a DiscoveryDocument object. |
![]() | Ref | Gets or sets the reference to a discovery document. |
![]() | Url | Gets or sets the URL of the referenced discovery document.(Overrides DiscoveryReference.Url.) |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | ReadDocument(Stream) | Reads and returns the discovery document from the passed Stream.(Overrides DiscoveryReference.ReadDocument(Stream).) |
![]() | Resolve() | Downloads the referenced document at Url to resolve whether the referenced document is valid.(Inherited from DiscoveryReference.) |
![]() | Resolve(String, Stream) | Resolves whether the referenced document is valid.(Inherited from DiscoveryReference.) |
![]() | ResolveAll() | Verifies that all referenced documents within the discovery document are valid. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
![]() | WriteDocument(Object, Stream) | Writes the passed DiscoveryDocument into the passed Stream.(Overrides DiscoveryReference.WriteDocument(Object, Stream).) |
XML Web services discovery involves discovering the available XML Web services given an URL. The URL typically points to a discovery document, which usually has a.disco file name extension. The discovery document contains references to information about the existance of XML Web services, such as Service Descriptions, XML Schema Definition language (XSD) schemas, or other discovery documents. This class represents a reference to a discovery document.
using System; using System.Xml; using System.Web.Services.Discovery; using System.IO; using System.Collections; public class DiscoveryDocumentReference_ctor_WriteDocument { public static void Main() { try { DiscoveryDocument myDiscoveryDocument; XmlTextReader myXmlTextReader = new XmlTextReader("http://localhost/Sample_cs.vsdisco"); myDiscoveryDocument = DiscoveryDocument.Read(myXmlTextReader); // Create a new instance of DiscoveryDocumentReference. DiscoveryDocumentReference myDiscoveryDocumentReference = new DiscoveryDocumentReference(); FileStream myFileStream = new FileStream("Temp.vsdisco", FileMode.OpenOrCreate, FileAccess.Write); myDiscoveryDocumentReference.WriteDocument( myDiscoveryDocument, myFileStream); myFileStream.Close(); FileStream myFileStream1 = new FileStream("Temp.vsdisco", FileMode.OpenOrCreate, FileAccess.Read); StreamReader myStreamReader = new StreamReader(myFileStream1); // Initialize the file pointer. myStreamReader.BaseStream.Seek(0, SeekOrigin.Begin); Console.WriteLine("The contents of the discovery document are: \n"); while(myStreamReader.Peek() > -1) { // Display the contents of the discovery document. Console.WriteLine(myStreamReader.ReadLine()); } myStreamReader.Close(); } catch(Exception e) { Console.WriteLine("Exception: {0}", e.Message); } } }
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


