// // System.Drawing.Imaging.ImageCodecInfo.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 { //[ComVisible(false)] public sealed class ImageCodecInfo { // methods //[MonoTODO] //[ComVisible(false)] public static ImageCodecInfo[] GetImageDecoders() { throw new NotImplementedException (); } //[MonoTODO] //[ComVisible(false)] public static ImageCodecInfo[] GetImageEncoders() { throw new NotImplementedException (); } // properties //[MonoTODO] //[ComVisible(false)] public Guid Clsid { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } //[MonoTODO] //[ComVisible(false)] public string CodecName { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } //[MonoTODO] //[ComVisible(false)] public string DllName { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } //[MonoTODO] //[ComVisible(false)] public string FilenameExtension { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } //[MonoTODO] //[ComVisible(false)] public ImageCodecFlags Flags { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } //[MonoTODO] //[ComVisible(false)] public string FormatDescription { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } //[MonoTODO] //[ComVisible(false)] public Guid FormatID { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } //[MonoTODO] //[ComVisible(false)] public string MimeType { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } //[MonoTODO] //[ComVisible(false)] public byte[][] SignatureMasks { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } //[MonoTODO] //[ComVisible(false)] public byte[][] SignaturePatterns { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } //[MonoTODO] //[ComVisible(false)] public int Version { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } } }