Expression.Catch Method (Type, Expression)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates a CatchBlock representing a catch statement.
Assembly: System.Core (in System.Core.dll)
Parameters
- type
- Type: System.Type
The Type of Exception this CatchBlock will handle.
- body
- Type: System.Linq.Expressions.Expression
The body of the catch statement.
The Type of Exception to be caught can be specified but no reference to the Exception object will be available for use in the CatchBlock.
Show: