2 writes to _active
PresentationUI (2)
MS\Internal\Documents\Application\WriteableOnDemandStream.cs (2)
58
_active
= readingStream;
300
_active
= writer;
14 references to _active
PresentationUI (14)
MS\Internal\Documents\Application\WriteableOnDemandStream.cs (14)
88
return
_active
.CanRead;
99
return
_active
.CanSeek;
115
_active
.Flush();
126
return
_active
.Length;
137
return
_active
.Position;
141
_active
.Position = value;
150
return
_active
.Read(buffer, offset, count);
158
return
_active
.Seek(offset, origin);
184
return
_active
.CanWrite;
199
_active
.SetLength(value);
208
_active
.Write(buffer, offset, count);
245
if (_isActiveWriteable &&
_active
.CanWrite)
247
_active
.Flush();
298
writer.Position =
_active
.Position;