Contains event data about the changed child object. More...
Public Member Functions | |
| ChildChangedEventArgs (object childObject, PropertyChangedEventArgs propertyArgs, ListChangedEventArgs listArgs) | |
| Creates an instance of the object. More... | |
| ChildChangedEventArgs (object childObject, PropertyChangedEventArgs propertyArgs) | |
| Creates an instance of the object. More... | |
| ChildChangedEventArgs (object childObject, PropertyChangedEventArgs propertyArgs, NotifyCollectionChangedEventArgs listArgs) | |
| Creates an instance of the object. More... | |
Properties | |
| object | ChildObject [get] |
| Gets a reference to the changed child object. More... | |
| PropertyChangedEventArgs | PropertyChangedArgs [get] |
| Gets the PropertyChangedEventArgs object from the child's PropertyChanged event, if the child is not a collection or list. More... | |
| NotifyCollectionChangedEventArgs | CollectionChangedArgs [get] |
| Gets the NotifyCollectionChangedEventArgs object from the child's CollectionChanged event, if the child is an ObservableCollection. More... | |
| ListChangedEventArgs | ListChangedArgs [get] |
| Gets the ListChangedEventArgs object from the child's ListChanged event, if the child is a collection or list. More... | |
Contains event data about the changed child object.
Definition at line 20 of file ChildChangedEventArgs.cs.
| Csla.Core.ChildChangedEventArgs.ChildChangedEventArgs | ( | object | childObject, |
| PropertyChangedEventArgs | propertyArgs, | ||
| ListChangedEventArgs | listArgs | ||
| ) |
Creates an instance of the object.
| childObject | Reference to the child object that was changed. |
| listArgs | ListChangedEventArgs object or null. |
| propertyArgs | PropertyChangedEventArgs object or null. |
Definition at line 58 of file ChildChangedEventArgs.cs.
| Csla.Core.ChildChangedEventArgs.ChildChangedEventArgs | ( | object | childObject, |
| PropertyChangedEventArgs | propertyArgs | ||
| ) |
Creates an instance of the object.
| childObject | Reference to the child object that was changed. |
| propertyArgs | PropertyChangedEventArgs object or null. |
Definition at line 73 of file ChildChangedEventArgs.cs.
| Csla.Core.ChildChangedEventArgs.ChildChangedEventArgs | ( | object | childObject, |
| PropertyChangedEventArgs | propertyArgs, | ||
| NotifyCollectionChangedEventArgs | listArgs | ||
| ) |
Creates an instance of the object.
| childObject | Reference to the child object that was changed. |
| listArgs | ListChangedEventArgs object or null. |
| propertyArgs | PropertyChangedEventArgs object or null. |
Definition at line 91 of file ChildChangedEventArgs.cs.
|
get |
Gets a reference to the changed child object.
Definition at line 25 of file ChildChangedEventArgs.cs.
|
get |
Gets the NotifyCollectionChangedEventArgs object from the child's CollectionChanged event, if the child is an ObservableCollection.
Definition at line 37 of file ChildChangedEventArgs.cs.
|
get |
Gets the ListChangedEventArgs object from the child's ListChanged event, if the child is a collection or list.
Definition at line 44 of file ChildChangedEventArgs.cs.
|
get |
Gets the PropertyChangedEventArgs object from the child's PropertyChanged event, if the child is not a collection or list.
Definition at line 31 of file ChildChangedEventArgs.cs.