Пример #1
0
 public PropertyValueChangedEventArgs
 (
     [NotNull] INItemCollection collection,
     [NotNull] INProperty property,
     [CanBeNull] object oldValue,
     [CanBeNull] object newValue) : base(
         collection
         )
 {
     Property = property;
     OldValue = oldValue;
     NewValue = newValue;
 }
Пример #2
0
 public PropertyAccessorEventArgs([NotNull] INItemCollection collection)
 {
     Collection = collection;
 }
Пример #3
0
 public ItemAddedEventArgs([NotNull] INItemCollection collection, [NotNull] INItem item) : base(collection)
 {
     Item = item;
 }
Пример #4
0
 public PropertyAddedEventArgs([NotNull] INItemCollection collection, [NotNull] INProperty property) : base(collection)
 {
     Property = property;
 }
Пример #5
0
 public ItemCollectionEventArgs([NotNull] INItemCollection collection)
 {
     Collection = collection;
 }
Пример #6
0
 public CompoundAccessorEventArgs([NotNull] INItemCollection collection)
 {
   Collection = collection;
 }
Пример #7
0
 public CompoundRemovedEventArgs([NotNull] INItemCollection collection, [NotNull] string compoundName) : base(collection)
 {
     CompoundName = compoundName;
 }
Пример #8
0
 public CompoundAddedEventArgs([NotNull] INItemCollection collection, [NotNull] INCompound compound) : base(collection)
 {
     Compound = compound;
 }
Пример #9
0
 public ItemRemovedEventArgs([NotNull] INItemCollection collection, [NotNull] string itemName) : base(collection)
 {
     ItemName = itemName;
 }
Пример #10
0
 public PropertyRemovedEventArgs([NotNull] INItemCollection collection, [NotNull] string propertyName) : base(collection)
 {
     PropertyName = propertyName;
 }