ImageListStreamer.cs 958 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // System.Windows.Forms.ImageListStreamer.cs
  3. //
  4. // Author:
  5. // stubbed out by Daniel Carrera ([email protected])
  6. // Dennis Hayes ([email protected])
  7. //
  8. // (C) 2002 Ximian, Inc
  9. //
  10. using System.Runtime.Serialization;
  11. namespace System.Windows.Forms {
  12. // <summary>
  13. // This is only a template. Nothing is implemented yet.
  14. //
  15. // </summary>
  16. public sealed class ImageListStreamer : ISerializable {
  17. //
  18. // --- Public Methods
  19. //
  20. [MonoTODO]
  21. public override bool Equals(object o) {
  22. throw new NotImplementedException ();
  23. }
  24. //public static bool Equals(object o1, object o2) {
  25. // throw new NotImplementedException ();
  26. //}
  27. [MonoTODO]
  28. public override int GetHashCode() {
  29. //FIXME add our proprities
  30. return base.GetHashCode();
  31. }
  32. [MonoTODO]
  33. void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context){
  34. throw new NotImplementedException ();
  35. }
  36. }
  37. }