2 writes to _active
PresentationUI (2)
MS\Internal\Documents\Application\WriteableOnDemandStream.cs (2)
57
_active
= readingStream;
299
_active
= writer;
14 references to _active
PresentationUI (14)
MS\Internal\Documents\Application\WriteableOnDemandStream.cs (14)
87
return
_active
.CanRead;
98
return
_active
.CanSeek;
114
_active
.Flush();
125
return
_active
.Length;
136
return
_active
.Position;
140
_active
.Position = value;
149
return
_active
.Read(buffer, offset, count);
157
return
_active
.Seek(offset, origin);
183
return
_active
.CanWrite;
198
_active
.SetLength(value);
207
_active
.Write(buffer, offset, count);
244
if (_isActiveWriteable &&
_active
.CanWrite)
246
_active
.Flush();
297
writer.Position =
_active
.Position;