This event is used internally to propagate
System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged events across the remoting boundary. See
NotifyCollectionChangedWrapper for a description of how to receive
System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged events for a given object.
Syntax
Event Data
The event handler receives an argument of type RemoteCollectionChangedEventArgs containing data related to this event. The following RemoteCollectionChangedEventArgs properties provide information specific to this event.
| Property | Description |
|---|
| Action | Gets the action that caused the event. |
| NewItems | Gets the list of new items involved in the change. |
| NewStartingIndex | Gets the index at which the change occurred. |
| OldItems | Gets the list of items affected by a Replace, Remove, or Move action. |
| OldStartingIndex | Gets the index at which a Move, Remove, or Replace action occurred. |
Requirements
Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)
See Also