Obtains read access, via an input stream, to the content data of this ContentTransfer object. The content data is fetched from the server. The Content Platform Engine will not automatically close the stream after access has finished; unless you want the stream to remain open, your application should close the stream after it has finished reading the content data.

Namespace:  FileNet.Api.Core
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Function AccessContentStream As Stream
C#
Stream AccessContentStream()
Visual C++
Stream^ AccessContentStream()
JavaScript
function accessContentStream();

Return Value

A Stream object for reading content data. To retrieve content at arbitrary positions within the stream, cast the returned Stream to ExtendedStream and use the methods on ExtendedStream.

ToggleSee Also