ImageCodecInfo.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. //
  2. // System.Drawing.Imaging.ImageCodecInfo.cs
  3. //
  4. // (C) 2002 Ximian, Inc. http://www.ximian.com
  5. // Author: Everaldo Canuto
  6. // eMail: [email protected]
  7. // Dennis Hayes ([email protected])
  8. //
  9. using System;
  10. namespace System.Drawing.Imaging {
  11. //[ComVisible(false)]
  12. public sealed class ImageCodecInfo {
  13. // methods
  14. //[MonoTODO]
  15. //[ComVisible(false)]
  16. public static ImageCodecInfo[] GetImageDecoders() {
  17. throw new NotImplementedException ();
  18. }
  19. //[MonoTODO]
  20. //[ComVisible(false)]
  21. public static ImageCodecInfo[] GetImageEncoders() {
  22. throw new NotImplementedException ();
  23. }
  24. // properties
  25. //[MonoTODO]
  26. //[ComVisible(false)]
  27. public Guid Clsid {
  28. get { throw new NotImplementedException (); }
  29. set { throw new NotImplementedException (); }
  30. }
  31. //[MonoTODO]
  32. //[ComVisible(false)]
  33. public string CodecName {
  34. get { throw new NotImplementedException (); }
  35. set { throw new NotImplementedException (); }
  36. }
  37. //[MonoTODO]
  38. //[ComVisible(false)]
  39. public string DllName {
  40. get { throw new NotImplementedException (); }
  41. set { throw new NotImplementedException (); }
  42. }
  43. //[MonoTODO]
  44. //[ComVisible(false)]
  45. public string FilenameExtension {
  46. get { throw new NotImplementedException (); }
  47. set { throw new NotImplementedException (); }
  48. }
  49. //[MonoTODO]
  50. //[ComVisible(false)]
  51. public ImageCodecFlags Flags {
  52. get { throw new NotImplementedException (); }
  53. set { throw new NotImplementedException (); }
  54. }
  55. //[MonoTODO]
  56. //[ComVisible(false)]
  57. public string FormatDescription {
  58. get { throw new NotImplementedException (); }
  59. set { throw new NotImplementedException (); }
  60. }
  61. //[MonoTODO]
  62. //[ComVisible(false)]
  63. public Guid FormatID {
  64. get { throw new NotImplementedException (); }
  65. set { throw new NotImplementedException (); }
  66. }
  67. //[MonoTODO]
  68. //[ComVisible(false)]
  69. public string MimeType {
  70. get { throw new NotImplementedException (); }
  71. set { throw new NotImplementedException (); }
  72. }
  73. //[MonoTODO]
  74. //[ComVisible(false)]
  75. public byte[][] SignatureMasks {
  76. get { throw new NotImplementedException (); }
  77. set { throw new NotImplementedException (); }
  78. }
  79. //[MonoTODO]
  80. //[ComVisible(false)]
  81. public byte[][] SignaturePatterns {
  82. get { throw new NotImplementedException (); }
  83. set { throw new NotImplementedException (); }
  84. }
  85. //[MonoTODO]
  86. //[ComVisible(false)]
  87. public int Version {
  88. get { throw new NotImplementedException (); }
  89. set { throw new NotImplementedException (); }
  90. }
  91. }
  92. }