Expression.MakeTry Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Creates a TryExpression representing a try block with the specified elements.

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

Syntax

'Declaration
Public Shared Function MakeTry ( _
    type As Type, _
    body As Expression, _
    finally As Expression, _
    fault As Expression, _
    handlers As IEnumerable(Of CatchBlock) _
) As TryExpression
public static TryExpression MakeTry(
    Type type,
    Expression body,
    Expression finally,
    Expression fault,
    IEnumerable<CatchBlock> handlers
)

Parameters

  • type
    Type: System.Type
    The result type of the try expression. If null, bodh and all handlers must have identical type.

Return Value

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

Version Information

Silverlight

Supported in: 5, 4

Platforms

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