1 write to _superStream
System.IO.Compression (1)
System\IO\Compression\ZipCustomStreams.cs (1)
235_superStream = superStream;
10 references to _superStream
System.IO.Compression (10)
System\IO\Compression\ZipCustomStreams.cs (10)
266public override bool CanRead => _superStream.CanRead && _canRead; 292if (_superStream.Position != _positionInSuperStream) 293_superStream.Seek(_positionInSuperStream, SeekOrigin.Begin); 300int ret = _superStream.Read(buffer, offset, count); 315if (_superStream.Position != _positionInSuperStream) 316_superStream.Seek(_positionInSuperStream, SeekOrigin.Begin); 323int ret = _superStream.Read(destination.Slice(0, count)); 349if (_superStream.Position != _positionInSuperStream) 351_superStream.Seek(_positionInSuperStream, SeekOrigin.Begin); 359int ret = await _superStream.ReadAsync(buffer, cancellationToken).ConfigureAwait(false);