2 writes to Count
PresentationCore (2)
System\Windows\Media\ByteStreamGeometryContext.cs (2)
654_currentPolySegmentData.Count++; 676_currentPolySegmentData.Count += (uint)count;
8 references to Count
PresentationCore (8)
System\Windows\Media\ByteStreamGeometryContext.cs (1)
590_lastSegmentSize = (UInt32)(sizeof(MIL_SEGMENT_POLY) + (sizeof(Point) * _currentPolySegmentData.Count));
System\Windows\Media\PathGeometry.cs (7)
238Debug.Assert(pSegmentPoly->Count <= Int32.MaxValue); 240if (pSegmentPoly->Count > 0) 242List<Point> points = new List<Point>((int)pSegmentPoly->Count); 248(int)pSegmentPoly->Count * sizeof(Point)); 252(int)pSegmentPoly->Count * sizeof(Point)); 256for (uint k = 0; k < pSegmentPoly->Count; k++) 282currentOffset += sizeof(MIL_SEGMENT_POLY) + (int)pSegmentPoly->Count * sizeof(Point);