Catel.Collections.NotifyRangedCollectionChangedEventArgs.NotifyRangedCollectionChangedEventArgs C# (CSharp) Метод

NotifyRangedCollectionChangedEventArgs() публичный Метод

Initializes a new instance of the NotifyRangedCollectionChangedEventArgs class.
public NotifyRangedCollectionChangedEventArgs ( NotifyCollectionChangedAction action, IList changedItems, IList indices ) : System.Collections
action NotifyCollectionChangedAction The action.
changedItems IList The changed items.
indices IList The indices.
Результат System.Collections
        public NotifyRangedCollectionChangedEventArgs(NotifyCollectionChangedAction action, IList changedItems, IList<int> indices)
            : base(action, changedItems, (indices != null && indices.Count != 0) ? indices[0] : -1)
        {
            Argument.IsNotNull("indices", indices);
            // ReSharper disable once PossibleNullReferenceException
            Argument.IsNotOutOfRange("indices", indices.Count, changedItems.Count, changedItems.Count);

            Indices = indices;
        }

Same methods

NotifyRangedCollectionChangedEventArgs::NotifyRangedCollectionChangedEventArgs ( NotifyCollectionChangedAction action ) : System.Collections
NotifyRangedCollectionChangedEventArgs