Universal Windows Service Class Library

EventArrayList.AddEvent Event

Event which will occures if an element was added to array list.

public event ArrayListAddEventHandler AddEvent;

Event Data

The event handler receives an argument of type ArrayListEventArgs containing data related to this event. The following ArrayListEventArgs properties provide information specific to this event.

Property Description
Collection Get the collection of added objects.
Object Get the single added object.

Remarks

This event will be fired if one or more element were added to array list. Callback functions using this event must have the same struct as ArrayListAddEventHandler delegate.

See Also

EventArrayList Class | uws.Utilities Namespace | ArrayListAddEventHandler