7 writes to SerializedData
PresentationCore (7)
System\Windows\Media\EllipseGeometry.cs (1)
322data.SerializedData = ctx.GetData();
System\Windows\Media\Geometry.cs (1)
998data.SerializedData = new byte[size];
System\Windows\Media\GlyphTypeface.cs (1)
1288pathGeoData.SerializedData = data;
System\Windows\Media\LineGeometry.cs (1)
251data.SerializedData = ctx.GetData();
System\Windows\Media\PathGeometry.cs (1)
970data.SerializedData = ctx.GetData();
System\Windows\Media\RectangleGeometry.cs (1)
434data.SerializedData = ctx.GetData();
System\Windows\Media\StreamGeometry.cs (1)
350SerializedData = _data
31 references to SerializedData
PresentationCore (31)
System\Windows\Media\Geometry.cs (13)
285fixed (byte* pbPathData = pathData.SerializedData) 403fixed (byte* pbPathData = pathData.SerializedData) 602fixed (byte *pbPathData = pathData.SerializedData) 685fixed (byte* pbPathData = pathData.SerializedData) 828fixed (byte* pbPathData = pathData.SerializedData) 932if ((SerializedData == null) || (SerializedData.Length <= 0)) 939fixed (byte *pbPathData = SerializedData) 956if ((SerializedData == null) || (SerializedData.Length <= 0)) 963fixed (byte *pbPathData = SerializedData) 968Invariant.Assert(size <= (uint)SerializedData.Length); 1000fixed (byte *pbData = data.SerializedData)
System\Windows\Media\PathGeometry.cs (17)
111fixed (byte* pbData = pathData.SerializedData) 117Invariant.Assert(pathData.SerializedData.Length >= currentOffset + sizeof(MIL_PATHGEOMETRY)); 135Debug.Assert(pathData.SerializedData.Length >= currentOffset + sizeof(MIL_PATHFIGURE)); 155Debug.Assert(pathData.SerializedData.Length >= currentOffset + sizeof(MIL_SEGMENT)); 165Debug.Assert(pathData.SerializedData.Length >= currentOffset + sizeof(MIL_SEGMENT_LINE)); 180Debug.Assert(pathData.SerializedData.Length >= currentOffset + sizeof(MIL_SEGMENT_BEZIER)); 197Debug.Assert(pathData.SerializedData.Length >= currentOffset + sizeof(MIL_SEGMENT_QUADRATICBEZIER)); 213Debug.Assert(pathData.SerializedData.Length >= currentOffset + sizeof(MIL_SEGMENT_ARC)); 234Debug.Assert(pathData.SerializedData.Length >= currentOffset + sizeof(MIL_SEGMENT_POLY)); 246Debug.Assert(pathData.SerializedData.Length >= 568fixed (byte *pbPathData = pathData.SerializedData) 612fixed (byte* pPathData1 = data1.SerializedData) 616fixed (byte* pPathData2 = data2.SerializedData) 763fixed (byte *pbPathData = pathData.SerializedData) 821fixed (byte *pbPathData1 = data1.SerializedData) 825fixed (byte *pbPathData2 = data2.SerializedData) 1017fixed (byte *pPathData = pathData.SerializedData)
System\Windows\Media\StreamGeometry.cs (1)
401byte[] pathDataToMarshal = _data ?? GetEmptyPathGeometryData().SerializedData;