// // System.Drawing.Imaging.ImageFormat.cs // // (C) 2002 Ximian, Inc. http://www.ximian.com // Author: Everaldo Canuto // eMail: everaldo.canuto@bol.com.br // Dennis Hayes (dennish@raytek.com) // using System; namespace System.Drawing.Imaging { public sealed class ImageFormat { // constructors [MonoTODO] public ImageFormat(Guid guid) { throw new NotImplementedException (); } // methods [MonoTODO] public override bool Equals(object o) { throw new NotImplementedException (); } [MonoTODO] public override int GetHashCode() { throw new NotImplementedException (); } [MonoTODO] public override string ToString() { throw new NotImplementedException (); } // properties [MonoTODO] public static ImageFormat Bmp { get { throw new NotImplementedException (); } } [MonoTODO] public static ImageFormat Emf { get { throw new NotImplementedException (); } } [MonoTODO] public static ImageFormat Exif { get { throw new NotImplementedException (); } } [MonoTODO] public static ImageFormat Gif { get { throw new NotImplementedException (); } } [MonoTODO] public Guid Guid { get { throw new NotImplementedException (); } } [MonoTODO] public static ImageFormat Icon { get { throw new NotImplementedException (); } } [MonoTODO] public static ImageFormat Jpeg { get { throw new NotImplementedException (); } } [MonoTODO] public static ImageFormat MemoryBmp { get { throw new NotImplementedException (); } } [MonoTODO] public static ImageFormat Png { get { throw new NotImplementedException (); } } [MonoTODO] public static ImageFormat Tiff { get { throw new NotImplementedException (); } } [MonoTODO] public static ImageFormat Wmf { get { throw new NotImplementedException (); } } } }