CollectionChangeAction.cs 326 B

1234567891011121314151617181920
  1. //
  2. // System.ComponentModel.CollectionChangeAction.cs
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. //
  7. // (C) Ximian, Inc
  8. //
  9. namespace System.ComponentModel
  10. {
  11. /// <summary>
  12. /// Specifies how the collection is changed.
  13. /// </summary>
  14. public enum CollectionChangeAction {
  15. Add = 1,
  16. Remove = 2,
  17. Refresh = 3
  18. }
  19. }