PathData
namespace System.Drawing.Drawing2D
{
public sealed class PathData
{
public PointF[] Points {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
set {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public byte[] Types {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
set {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public PathData()
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
}