ComponentOne CollectionView
C1.CollectionView Assembly / C1.CollectionView Namespace / NotifyCollectionChangedAsyncEventArgs Class / Create Method / Create(NotifyCollectionChangedAction,IList,IList) Method
The action that caused the event. This can only be set to System.Collections.Specialized.NotifyCollectionChangedAction.Replace.
The new items that are replacing the original items.
The original items that are replaced.

In This Topic
    Create(NotifyCollectionChangedAction,IList,IList) Method
    In This Topic
    Initializes a new instance of the NotifyCollectionChangedAsyncEventArgs class.
    Syntax
    'Declaration
     
    Public Overloads Shared Function Create( _
       ByVal action As System.Collections.Specialized.NotifyCollectionChangedAction, _
       ByVal newItems As System.Collections.IList, _
       ByVal oldItems As System.Collections.IList _
    ) As NotifyCollectionChangedDeferralsAwaiter
    public static NotifyCollectionChangedDeferralsAwaiter Create( 
       System.Collections.Specialized.NotifyCollectionChangedAction action,
       System.Collections.IList newItems,
       System.Collections.IList oldItems
    )

    Parameters

    action
    The action that caused the event. This can only be set to System.Collections.Specialized.NotifyCollectionChangedAction.Replace.
    newItems
    The new items that are replacing the original items.
    oldItems
    The original items that are replaced.
    See Also