PropertyItem.cs 907 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // System.Drawing.Imaging.PropertyItem.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 PropertyItem {
  12. // properties
  13. //[MonoTODO]
  14. public int Id {
  15. get { throw new NotImplementedException (); }
  16. set { throw new NotImplementedException (); }
  17. }
  18. //[MonoTODO]
  19. public int Len {
  20. get { throw new NotImplementedException (); }
  21. set { throw new NotImplementedException (); }
  22. }
  23. //[MonoTODO]
  24. public short Type {
  25. get { throw new NotImplementedException (); }
  26. set { throw new NotImplementedException (); }
  27. }
  28. //[MonoTODO]
  29. public byte[] Value {
  30. get { throw new NotImplementedException (); }
  31. set { throw new NotImplementedException (); }
  32. }
  33. }
  34. }