Class ItemsChangedEventArgs<T>
- Namespace
- Bluetooth.Abstractions.EventArgs
- Assembly
- Bluetooth.Abstractions.dll
Provides data for events involving a collection of typed items.
public class ItemsChangedEventArgs<T> : EventArgs
Type Parameters
TThe type of items in the collection.
- Inheritance
-
ItemsChangedEventArgs<T>
- Derived
- Inherited Members
Constructors
ItemsChangedEventArgs(IEnumerable<T>)
Initializes a new instance of the ItemsChangedEventArgs<T> class.
public ItemsChangedEventArgs(IEnumerable<T> items)
Parameters
itemsIEnumerable<T>The items associated with the event.
Properties
Items
Gets the items associated with the event.
public IEnumerable<T> Items { get; }
Property Value
- IEnumerable<T>