BitmapData
namespace System.Drawing.Imaging
{
public sealed class BitmapData
{
public int Height {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
set {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public PixelFormat PixelFormat {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
set {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public int Reserved {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
set {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public IntPtr Scan0 {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
set {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public int Stride {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
set {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public int Width {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
set {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public BitmapData()
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
}