Ler en inglés Editar

Compartir por


DiscoveryDocumentReference Class

Definition

Represents a reference to a discovery document. This class cannot be inherited.

C#
public sealed class DiscoveryDocumentReference : System.Web.Services.Discovery.DiscoveryReference
Inheritance
DiscoveryDocumentReference

Examples

C#
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);
        }
    }
}

Remarks

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 existence 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.

Constructors

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.

Properties

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.

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.

Methods

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()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ReadDocument(Stream)

Reads and returns the discovery document from the passed 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.

Applies to

Produto Versións
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also