Catch Method (Type, Expression, Expression)

Expression.Catch Method (Type, Expression, 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 with an Exception filter but no reference to the caught Exception object.

Namespace:  System.Linq.Expressions
Assembly:  System.Core (in System.Core.dll)

public static CatchBlock Catch(
	Type type,
	Expression body,
	Expression filter
)

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.
filter
Type: System.Linq.Expressions.Expression
The body of the Exception filter.

Return Value

Type: System.Linq.Expressions.CatchBlock
The created CatchBlock.

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft