ContractReference.WriteDocument(Object, Stream) Method

Definition

Writes the passed-in service description into the passed-in Stream.

public override void WriteDocument(object document, System.IO.Stream stream);

Parameters

document
Object

The ServiceDescription to write into stream.

stream
Stream

The Stream into which the serialized ServiceDescription is written.

Examples

ContractReference myContractReference = new ContractReference();
FileStream myFileStream = new FileStream( "TestOutput_cs.wsdl",
    FileMode.OpenOrCreate, FileAccess.Write );

// Get the ServiceDescription for the test .wsdl file.
ServiceDescription myServiceDescription  =
    ServiceDescription.Read("TestInput_cs.wsdl");

// Write the ServiceDescription into the file stream.
myContractReference.WriteDocument(myServiceDescription, myFileStream);
Console.WriteLine("ServiceDescription is written "
    + "into the file stream successfully.");
Console.WriteLine("The number of bytes written into the file stream: "
    + myFileStream.Length);
 myFileStream.Close();

Applies to

Produkt Wersje
.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