| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- //
- // System.Drawing.Imaging.ImageCodecInfo.cs
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- // Author: Everaldo Canuto
- // eMail: [email protected]
- // Dennis Hayes ([email protected])
- //
- 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 (); }
- }
- }
- }
|