public event EventHandler<EventArgs<T>> ItemTimedOutPublic Event ItemTimedOut As EventHandler(Of EventArgs(Of T))public:
event EventHandler<EventArgs<T>^>^ ItemTimedOut {
void add (EventHandler<EventArgs<T>^>^ value);
void remove (EventHandler<EventArgs<T>^>^ value);
}function add_ItemTimedOut(value);
function remove_ItemTimedOut(value);Allows custom handling of items that took too long to process.
Raised only when ProcessingStyle = OneAtATime (i.e., ProcessItemFunction is defined).