ImageFormat
namespace System.Drawing.Imaging
{
public sealed class ImageFormat
{
public static ImageFormat Bmp {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public static ImageFormat Emf {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public static ImageFormat Exif {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public static ImageFormat Gif {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public Guid Guid {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public static ImageFormat Icon {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public static ImageFormat Jpeg {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public static ImageFormat MemoryBmp {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public static ImageFormat Png {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public static ImageFormat Tiff {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public static ImageFormat Wmf {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public ImageFormat(Guid guid)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public override bool Equals(object o)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public override int GetHashCode()
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public override string ToString()
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
}