Click or drag to resize

ExceptionExtensionsExceptionChain Method

Returns an enumeration of exceptions that contains this exception and all inner exceptions.

Namespace:  TomsToolbox.Essentials
Assembly:  TomsToolbox.Essentials (in TomsToolbox.Essentials.dll)
Syntax
public static IEnumerable<Exception> ExceptionChain(
	this Exception? ex
)

Parameters

ex
Type: SystemException
The exception to start with.

Return Value

Type: IEnumerableException
The exception and all inner exceptions.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Exception. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also