DiscoveryDocumentReference.ReadDocument(Stream) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Reads and returns the discovery document from the passed Stream.
public:
override System::Object ^ ReadDocument(System::IO::Stream ^ stream);
public override object ReadDocument (System.IO.Stream stream);
override this.ReadDocument : System.IO.Stream -> obj
Public Overrides Function ReadDocument (stream As Stream) As Object
Parameters
Returns
A DiscoveryDocument containing the contents of the referenced discovery document.
Examples
String^ myUrl = "http://localhost/Sample_cs.vsdisco";
DiscoveryClientProtocol^ myProtocol = gcnew DiscoveryClientProtocol;
DiscoveryDocumentReference^ myReference = gcnew DiscoveryDocumentReference( myUrl );
Stream^ myFileStream = myProtocol->Download( myUrl );
DiscoveryDocument^ myDiscoveryDocument = dynamic_cast<DiscoveryDocument^>(myReference->ReadDocument( myFileStream ));
string myUrl = "http://localhost/Sample_cs.vsdisco";
DiscoveryClientProtocol myProtocol = new DiscoveryClientProtocol();
DiscoveryDocumentReference myReference = new DiscoveryDocumentReference(myUrl);
Stream myFileStream = myProtocol.Download(ref myUrl);
DiscoveryDocument myDiscoveryDocument =
(DiscoveryDocument)myReference.ReadDocument(myFileStream);
Dim myUrl As String = "http://localhost/Sample_vb.vsdisco"
Dim myProtocol As New DiscoveryClientProtocol()
Dim myReference As New DiscoveryDocumentReference(myUrl)
Dim myFileStream As Stream = myProtocol.Download(myUrl)
Dim myDiscoveryDocument As DiscoveryDocument = _
CType(myReference.ReadDocument(myFileStream), DiscoveryDocument)
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.