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)
72
return
_tempStream
.Read(buffer, offset, count);
95
checked { temp =
_tempStream
.Position + offset; }
100
checked { temp =
_tempStream
.Length + offset; }
114
return
_tempStream
.Seek(offset, origin);
124
_tempStream
.SetLength(newLength);
127
if (newLength <
_tempStream
.Position)
128
_tempStream
.Position = newLength;
146
_tempStream
.Write(buffer, offset, count);
161
long tempPosition =
_tempStream
.Position;
164
_tempStream
.Position = 0;
166
_transformer.Compress(
_tempStream
, _baseStream);
169
_tempStream
.Position = tempPosition;
186
return
_tempStream
.Position;
195
_tempStream
.Position = value;
207
return
_tempStream
.Length;
291
_tempStream
.Position = 0;
295
_tempStream
.Position = position;
320
_tempStream
.Close();