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)
88return _active.CanRead; 99return _active.CanSeek; 115_active.Flush(); 126return _active.Length; 137return _active.Position; 141_active.Position = value; 150return _active.Read(buffer, offset, count); 158return _active.Seek(offset, origin); 184return _active.CanWrite; 199_active.SetLength(value); 208_active.Write(buffer, offset, count); 245if (_isActiveWriteable && _active.CanWrite) 247_active.Flush(); 298writer.Position = _active.Position;