public event EventHandler<EventArgs<T>> ItemProcessed
Public Event ItemProcessed As EventHandler(Of EventArgs(Of T))
public:
event EventHandler<EventArgs<T>^>^ ItemProcessed {
void add (EventHandler<EventArgs<T>^>^ value);
void remove (EventHandler<EventArgs<T>^>^ value);
}
function add_ItemProcessed(value);
function remove_ItemProcessed(value);
Allows custom handling of successfully processed items.
Allows notification when an item has completed processing in the allowed amount of time, if a process timeout is specified.
Raised only when ProcessingStyle = OneAtATime (i.e., ProcessItemFunction is defined).