7 references to AsyncReadWriteAdapter
System.Formats.Tar (7)
System\Formats\Tar\GnuSparseStream.cs (2)
210return ReadCoreAsync<AsyncReadWriteAdapter>(buffer, cancellationToken); 280return CopyPopulatedDataToCoreAsync<AsyncReadWriteAdapter>(destination, cancellationToken);
System\Formats\Tar\TarReader.cs (2)
64public ValueTask DisposeAsync() => DisposeCoreAsync<AsyncReadWriteAdapter>(); 161return GetNextEntryCoreAsync<AsyncReadWriteAdapter>(copyData, cancellationToken);
System\Formats\Tar\TarWriter.cs (3)
125public ValueTask DisposeAsync() => DisposeCoreAsync<AsyncReadWriteAdapter>(); 188return ReadFileFromDiskAndWriteToArchiveStreamAsEntryCoreAsync<AsyncReadWriteAdapter>(fullPath, actualEntryName, FileOptions.Asynchronous, cancellationToken).AsTask(); 299return WriteEntryCoreAsync<AsyncReadWriteAdapter>(entry, cancellationToken).AsTask();