1 write to _coreStrokes
PresentationCore (1)
MS\Internal\Ink\InkSerializedFormat\InkSerializer.cs (1)
56_coreStrokes = coreStrokes;
22 references to _coreStrokes
PresentationCore (22)
MS\Internal\Ink\InkSerializedFormat\InkSerializer.cs (22)
336if (0 != _coreStrokes.Count || _coreStrokes.ExtendedProperties.Count != 0) 666_coreStrokes.AddWithoutEvent(localStroke); 770_coreStrokes.ExtendedProperties[guid] = data; 1691new System.Collections.Generic.Dictionary<Stroke, StrokeLookupEntry>(_coreStrokes.Count); 1694for (int i = 0; i < _coreStrokes.Count; i++) 1696_strokeLookupTable.Add(_coreStrokes[i], new StrokeLookupEntry()); 1700_strokeDescriptorTable = new List<StrokeDescriptor>(_coreStrokes.Count); 1705using (MemoryStream localStream = new MemoryStream(_coreStrokes.Count * 125)) //reasonable default 1712foreach (Stroke s in _coreStrokes) 1830if (_coreStrokes.ExtendedProperties.Count > 0) 1833cumulativeEncodedSize += ExtendedPropertySerializer.EncodeAsISF(_coreStrokes.ExtendedProperties, localStream, guidList, GetCompressionAlgorithm(), true); 1843cumulativeEncodedSize += SaveStrokeIds(_coreStrokes, localStream, false); 1891int[] strokeIds = StrokeIdGenerator.GetStrokeIds(_coreStrokes); 1892for (int i = 0; i < _coreStrokes.Count; i++) 1894Stroke s = _coreStrokes[i]; 2146ExtendedPropertyCollection attributes = _coreStrokes.ExtendedProperties; 2153for (int j = 0; j < _coreStrokes.Count; j++) 2155BuildStrokeGuidList(_coreStrokes[j], guidList); 2563for (count = 0; count < _coreStrokes.Count; count++) 2565Stroke stroke = _coreStrokes[count]; 2646DrawingAttributes drattrs = _coreStrokes[count].DrawingAttributes;