TarReader(Stream, Boolean) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a TarReader instance that can read tar entries from the specified stream, and can optionally leave the stream open upon disposal of this instance.
public TarReader (System.IO.Stream archiveStream, bool leaveOpen = false);
new System.Formats.Tar.TarReader : System.IO.Stream * bool -> System.Formats.Tar.TarReader
Public Sub New (archiveStream As Stream, Optional leaveOpen As Boolean = false)
Parameters
- archiveStream
- Stream
The stream to read from.
- leaveOpen
- Boolean
false
to dispose the archiveStream
when this instance is disposed; true
to leave the stream open.
Exceptions
archiveStream
does not support reading.
archiveStream
is null
.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.