Universal Windows Service Class Library

ArrayListRemoveEventHandler Delegate

Remove delegate for the array list event handler.

public delegate void ArrayListRemoveEventHandler(
   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 remove event was fired must have the same struct as this delegate.

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

Requirements

Namespace: uws.Utilities

Assembly: uwsCore (in uwsCore.dll)

See Also

uws.Utilities Namespace | RemoveEvent | ArrayListEventArgs