ListCollectionView.OnBeginChangeLogging Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
Replaced by OnAllowsCrossThreadChangesChanged
Called by the base class to notify the derived class that a CollectionChanged event has been posted to the message queue.
protected:
override void OnBeginChangeLogging(System::Collections::Specialized::NotifyCollectionChangedEventArgs ^ args);
protected override void OnBeginChangeLogging (System.Collections.Specialized.NotifyCollectionChangedEventArgs args);
[System.Obsolete("Replaced by OnAllowsCrossThreadChangesChanged")]
protected override void OnBeginChangeLogging (System.Collections.Specialized.NotifyCollectionChangedEventArgs args);
override this.OnBeginChangeLogging : System.Collections.Specialized.NotifyCollectionChangedEventArgs -> unit
[<System.Obsolete("Replaced by OnAllowsCrossThreadChangesChanged")>]
override this.OnBeginChangeLogging : System.Collections.Specialized.NotifyCollectionChangedEventArgs -> unit
Protected Overrides Sub OnBeginChangeLogging (args As NotifyCollectionChangedEventArgs)
Parameters
The NotifyCollectionChangedEventArgs object that is added to the change log.
- Attributes
Exceptions
If args
is null
.
Remarks
The purpose of this notification is to allow collection views to take a snapshot of the information, which is often the state of the data collection, that is needed at the time of the post.