Help > Web Development > Object Reference > Object Reference > ISYSDocumentDisplay > Stream Method
<a name="kanchor357"></a>ISYSDocumentDisplay:Stream Method
Allows the document content to be streamed back to either an ASP Response object or COM stream.

Syntax
[VBScript]
sub ISYSDocumentDisplay.Stream(_
  Variant Destination_ 
)
[C#]
void ISYSDocumentDisplay.Stream(
  Variant Destination
);
[ColdFusion/Java]
void IISYSDocumentDisplay.Stream(
  Variant Destination
) throws ComException;
Parameters
DestinationStream or ASP Response object

Examples
[VBScript]
<% Set Document = Results(i) Document.Display.Stream Response %>