MetaHeader.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. //
  2. // System.Drawing.Imaging.MetaHeader.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. public sealed class MetaHeader {
  12. // constructors
  13. //[MonoTODO]
  14. public MetaHeader() {
  15. throw new NotImplementedException ();
  16. }
  17. // properties
  18. //[MonoTODO]
  19. public short HeaderSize {
  20. get { throw new NotImplementedException (); }
  21. set { throw new NotImplementedException (); }
  22. }
  23. //[MonoTODO]
  24. public int MaxRecord {
  25. get { throw new NotImplementedException (); }
  26. set { throw new NotImplementedException (); }
  27. }
  28. //[MonoTODO]
  29. public short NoObjects {
  30. get { throw new NotImplementedException (); }
  31. set { throw new NotImplementedException (); }
  32. }
  33. //[MonoTODO]
  34. public short NoParameters {
  35. get { throw new NotImplementedException (); }
  36. set { throw new NotImplementedException (); }
  37. }
  38. //[MonoTODO]
  39. public int Size {
  40. get { throw new NotImplementedException (); }
  41. set { throw new NotImplementedException (); }
  42. }
  43. //[MonoTODO]
  44. public short Type {
  45. get { throw new NotImplementedException (); }
  46. set { throw new NotImplementedException (); }
  47. }
  48. //[MonoTODO]
  49. public short Version {
  50. get { throw new NotImplementedException (); }
  51. set { throw new NotImplementedException (); }
  52. }
  53. }
  54. }