2 writes to _baseStream
WindowsBase (2)
Base\MS\Internal\IO\Packaging\CompoundFile\RightsManagementEncryptedStream.cs (2)
289
_baseStream
= null; // we better not get any calls after this
318
_baseStream
= baseStream;
22 references to _baseStream
WindowsBase (22)
Base\MS\Internal\IO\Packaging\CompoundFile\RightsManagementEncryptedStream.cs (22)
57
return (
_baseStream
!= null) &&
58
_baseStream
.CanRead &&
59
_baseStream
.CanSeek &&
72
return (
_baseStream
!= null) &&
73
_baseStream
.CanSeek;
85
return (
_baseStream
!= null) &&
86
_baseStream
.CanWrite &&
87
_baseStream
.CanRead &&
88
_baseStream
.CanSeek &&
139
_baseStream
.Flush();
276
if (
_baseStream
!= null)
280
_baseStream
.Close();
344
_baseStream
.Seek(0, SeekOrigin.Begin);
349
(
_baseStream
, prefixData, 0, prefixData.Length);
603
long newPosition =
_baseStream
.Seek(_prefixLengthSize + firstBlockOffset, SeekOrigin.Begin);
614
_baseStream
,
665
_baseStream
.Seek(0, SeekOrigin.Begin);
669
_baseStream
.Write(prefixData, 0, prefixData.Length);
683
_baseStream
.SetLength(physicalBaseStreamLength);
744
if (
_baseStream
== null)
829
_baseStream
.Seek(firstBlockOffset + _prefixLengthSize, SeekOrigin.Begin);
830
_baseStream
.Write(cryptoTextBuffer,0, totalByteCount);