Documents for PDF .NET Edition
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Common Namespace / GcBinaryReader Class / GcBinaryReader Constructor
The underlying System.IO.Stream object.
The encoding used for strings.
true to leave the stream open after the GcBinaryReader object is disposed; otherwise, false.

In This Topic
    GcBinaryReader Constructor
    In This Topic
    Initializes a new instance of the GcBinaryReader class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal baseStream As System.IO.Stream, _
       ByVal encoding As System.Text.Encoding, _
       ByVal leaveOpen As System.Boolean _
    )
    public GcBinaryReader( 
       System.IO.Stream baseStream,
       System.Text.Encoding encoding,
       System.bool leaveOpen
    )

    Parameters

    baseStream
    The underlying System.IO.Stream object.
    encoding
    The encoding used for strings.
    leaveOpen
    true to leave the stream open after the GcBinaryReader object is disposed; otherwise, false.
    See Also