TarReader Class

Definition

Reads a tar archive from a stream.

public ref class TarReader sealed : IAsyncDisposable, IDisposable
public sealed class TarReader : IAsyncDisposable, IDisposable
type TarReader = class
    interface IAsyncDisposable
    interface IDisposable
Public NotInheritable Class TarReader
Implements IAsyncDisposable, IDisposable
Inheritance
TarReader
Implements

Constructors

TarReader(Stream, Boolean)

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.

Methods

Dispose()

Disposes the current TarReader instance, and disposes the streams of all the entries that were read from the archive if the leaveOpen argument was set to false in the constructor.

DisposeAsync()

Asynchronously disposes the current TarReader instance, and closes the streams of all the entries that were read from the archive if the leaveOpen argument was set to false in the constructor.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetNextEntry(Boolean)

Retrieves the next entry from the archive stream.

GetNextEntryAsync(Boolean, CancellationToken)

Asynchronously retrieves the next entry from the archive stream.

GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Extension Methods

ConfigureAwait(IAsyncDisposable, Boolean)

Configures how awaits on the tasks returned from an async disposable are performed.

Applies to