Expression::MakeTry Method (Type^, Expression^, Expression^, Expression^, IEnumerable<CatchBlock^>^)

 

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

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

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.

body
Type: System.Linq.Expressions::Expression^

The body of the try block.

finally
Type: System.Linq.Expressions::Expression^

The body of the finally block. Pass null if the try block has no finally block associated with it.

fault
Type: System.Linq.Expressions::Expression^

The body of the fault block. Pass null if the try block has no fault block associated with it.

handlers
Type: System.Collections.Generic::IEnumerable<CatchBlock^>^

A collection of CatchBlocks representing the catch statements to be associated with the try block.

Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Return to top
Show: