System::IO::BinaryReader::BinaryReader constructor
Contents
[
Hide
]BinaryReader::BinaryReader(const SharedPtr<Stream>&) constructor
Constructs an instance of BinaryReader class that reads data from the specified stream using UTF-8 encoding.
System::IO::BinaryReader::BinaryReader(const SharedPtr<Stream> &input)
Parameter | Type | Description |
---|---|---|
input | const SharedPtr<Stream>& | The input stream |
See Also
- Typedef SharedPtr
- Class Stream
- Class BinaryReader
- Namespace System::IO
- Library Aspose.Page for C++
BinaryReader::BinaryReader(const SharedPtr<Stream>&, const SharedPtr<Text::Encoding>&) constructor
Constructs an instance of BinaryReader class that reads data from the specified stream using the specified encoding.
System::IO::BinaryReader::BinaryReader(const SharedPtr<Stream> &input, const SharedPtr<Text::Encoding> &encoding)
Parameter | Type | Description |
---|---|---|
input | const SharedPtr<Stream>& | The input stream |
encoding | const SharedPtr<Text::Encoding>& | The encoding to use |
See Also
- Typedef SharedPtr
- Class Stream
- Class Encoding
- Class BinaryReader
- Namespace System::IO
- Library Aspose.Page for C++
BinaryReader::BinaryReader(const SharedPtr<Stream>&, const SharedPtr<Text::Encoding>&, bool) constructor
Constructs an instance of BinaryReader class that reads data from the specified stream using the specified encoding.
System::IO::BinaryReader::BinaryReader(const SharedPtr<Stream> &input, const SharedPtr<Text::Encoding> &encoding, bool leaveOpen)
Parameter | Type | Description |
---|---|---|
input | const SharedPtr<Stream>& | The input stream |
encoding | const SharedPtr<Text::Encoding>& | The encoding to use |
leaveOpen | bool | Specifies whether the stream input should be left open (true) after the current object has been disposed or not (false) |
See Also
- Typedef SharedPtr
- Class Stream
- Class Encoding
- Class BinaryReader
- Namespace System::IO
- Library Aspose.Page for C++