This topic has not yet been rated - Rate this topic

Expression.Catch Method (Type, Expression)

Creates a CatchBlock representing a catch statement.

Namespace:  System.Linq.Expressions
Assembly:  System.Core (in System.Core.dll)
public static CatchBlock Catch(
	Type type,
	Expression body
)

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.

Return Value

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

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.

Silverlight

Supported in: 5, 4

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.