Stream Property

Summary

Gets the System.IO.Stream that contains the downloaded item data (buffer).

Syntax
C#
VB
C++
public Stream Stream { get; } 
  
Public ReadOnly Property Stream As Stream 
public: 
property Stream^ Stream { 
   Stream^ get(); 
} 

Property Value

A System.IO.Stream that contains the downloaded item data (buffer).

Remarks

In most cases, the stream is an HTTP stream and the Stream.CanSeek value will be set to false. Hence, you should read the data from the stream in a forward direction only. Also, do not make any assumptions regarding the stream length as shown in the examples.

Requirements

Target Platforms

Help Version 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.