2 writes to _tempStream
WindowsBase (2)
Base\MS\Internal\IO\Packaging\CompressEmulationStream.cs (2)
286_tempStream = tempStream; 321_tempStream = null;
18 references to _tempStream
WindowsBase (18)
Base\MS\Internal\IO\Packaging\CompressEmulationStream.cs (18)
72return _tempStream.Read(buffer, offset, count); 95checked { temp = _tempStream.Position + offset; } 100checked { temp = _tempStream.Length + offset; } 114return _tempStream.Seek(offset, origin); 124_tempStream.SetLength(newLength); 127if (newLength < _tempStream.Position) 128_tempStream.Position = newLength; 146_tempStream.Write(buffer, offset, count); 161long tempPosition = _tempStream.Position; 164_tempStream.Position = 0; 166_transformer.Compress(_tempStream, _baseStream); 169_tempStream.Position = tempPosition; 186return _tempStream.Position; 195_tempStream.Position = value; 207return _tempStream.Length; 291_tempStream.Position = 0; 295_tempStream.Position = position; 320_tempStream.Close();