System\Formats\Tar\TarHeader.Write.cs (4)
151return WriteWithUnseekableDataStreamCoreAsync<TAdapter>(TarEntryFormat.V7, archiveStream, buffer, shouldAdvanceToEnd: true, cancellationToken);
165return WriteWithUnseekableDataStreamCoreAsync<TAdapter>(TarEntryFormat.Ustar, archiveStream, buffer, shouldAdvanceToEnd: true, cancellationToken);
188await WriteWithUnseekableDataStreamCoreAsync<TAdapter>(TarEntryFormat.Pax, tempStream, buffer, shouldAdvanceToEnd: false, cancellationToken).ConfigureAwait(false);
251await WriteWithUnseekableDataStreamCoreAsync<TAdapter>(TarEntryFormat.Gnu, archiveStream, buffer, shouldAdvanceToEnd: true, cancellationToken).ConfigureAwait(false);