This topic has not yet been rated - Rate this topic

AggregateException.Handle Method

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Invokes a handler on each Exception contained by this AggregateException.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

public void Handle(
	Func<Exception, bool> predicate
)

Parameters

predicate
Type: System.Func<Exception, Boolean>
The predicate to execute for each exception. The predicate accepts as an argument the Exception to be processed and returns a Boolean to indicate whether the exception was handled.
Exception Condition
ArgumentNullException

The predicate argument is null.

AggregateException

An exception contained by this AggregateException was not handled.

Each invocation of the predicate returns true or false to indicate whether the Exception was handled. After all invocations, if any exceptions went unhandled, all unhandled exceptions will be put into a new AggregateException which will be thrown. Otherwise, the Handle method simply returns. If any invocations of the predicate throws an exception, it will halt the processing of any more exceptions and immediately propagate the thrown exception as-is.

.NET Framework

Supported in: 4.5, 4

.NET Framework Client Profile

Supported in: 4

Portable Class Library

Supported in: Portable Class Library

Windows 8 Release Preview, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 SP2, Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Did you find this helpful?
(1500 characters remaining)