1 write to _coreStrokes
PresentationCore (1)
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\InkSerializer.cs (1)
59_coreStrokes = coreStrokes;
22 references to _coreStrokes
PresentationCore (22)
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\InkSerializer.cs (22)
346if (0 != _coreStrokes.Count || _coreStrokes.ExtendedProperties.Count != 0) 676_coreStrokes.AddWithoutEvent(localStroke); 780_coreStrokes.ExtendedProperties[guid] = data; 1722new System.Collections.Generic.Dictionary<Stroke, StrokeLookupEntry>(_coreStrokes.Count); 1725for (int i = 0; i < _coreStrokes.Count; i++) 1727_strokeLookupTable.Add(_coreStrokes[i], new StrokeLookupEntry()); 1731_strokeDescriptorTable = new List<StrokeDescriptor>(_coreStrokes.Count); 1736using (MemoryStream localStream = new MemoryStream(_coreStrokes.Count * 125)) //reasonable default 1743foreach (Stroke s in _coreStrokes) 1862if (_coreStrokes.ExtendedProperties.Count > 0) 1865cumulativeEncodedSize += ExtendedPropertySerializer.EncodeAsISF(_coreStrokes.ExtendedProperties, localStream, guidList, GetCompressionAlgorithm(), true); 1875cumulativeEncodedSize += SaveStrokeIds(_coreStrokes, localStream, false); 1932int[] strokeIds = StrokeIdGenerator.GetStrokeIds(_coreStrokes); 1933for (int i = 0; i < _coreStrokes.Count; i++) 1935Stroke s = _coreStrokes[i]; 2197ExtendedPropertyCollection attributes = _coreStrokes.ExtendedProperties; 2204for (int j = 0; j < _coreStrokes.Count; j++) 2206BuildStrokeGuidList(_coreStrokes[j], guidList); 2624for (count = 0; count < _coreStrokes.Count; count++) 2626Stroke stroke = _coreStrokes[count]; 2707DrawingAttributes drattrs = _coreStrokes[count].DrawingAttributes;