<PackageReference Include="System.Drawing.Common" Version="4.6.0-rc1.19456.4" />

GraphicsPathIterator

namespace System.Drawing.Drawing2D { public sealed class GraphicsPathIterator : MarshalByRefObject, IDisposable { public int Count { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } } public int SubpathCount { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } } public GraphicsPathIterator(GraphicsPath path) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } public int CopyData(ref PointF[] points, ref byte[] types, int startIndex, int endIndex) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } public void Dispose() { } public int Enumerate(ref PointF[] points, ref byte[] types) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } public bool HasCurve() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } public int NextMarker(GraphicsPath path) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } public int NextMarker(out int startIndex, out int endIndex) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } public int NextPathType(out byte pathType, out int startIndex, out int endIndex) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } public int NextSubpath(GraphicsPath path, out bool isClosed) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } public int NextSubpath(out int startIndex, out int endIndex, out bool isClosed) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } public void Rewind() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } } }