Universal Windows Service Class Library

ArrayListAddEventHandler Delegate

Add delegate for the array list event handler.

public delegate void ArrayListAddEventHandler(
   object sender,
   ArrayListEventArgs e
);

Parameters

sender
Containing the object which fired the event.
e
Specified arguments used by callback function.

Remarks

Each function which should be called if the add event was fired must have the same struct as this delegate.

The event arguments containing the added objects. See ArrayListEventArgs class for further information.

Requirements

Namespace: uws.Utilities

Assembly: uwsCore (in uwsCore.dll)

See Also

uws.Utilities Namespace | AddEvent | ArrayListEventArgs