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)
87return _active.CanRead; 98return _active.CanSeek; 114_active.Flush(); 125return _active.Length; 136return _active.Position; 140_active.Position = value; 149return _active.Read(buffer, offset, count); 157return _active.Seek(offset, origin); 183return _active.CanWrite; 198_active.SetLength(value); 207_active.Write(buffer, offset, count); 244if (_isActiveWriteable && _active.CanWrite) 246_active.Flush(); 297writer.Position = _active.Position;