Expression.MakeTry Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates a TryExpression representing a try block with the specified elements.
Assembly: System.Core (in System.Core.dll)
'Declaration Public Shared Function MakeTry ( _ type As Type, _ body As Expression, _ finally As Expression, _ fault As Expression, _ handlers As IEnumerable(Of CatchBlock) _ ) As TryExpression
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 try block. Pass null if the try block has no fault block associated with it.
- handlers
- Type: System.Collections.Generic.IEnumerable(Of CatchBlock)
A collection of CatchBlocks representing the catch statements to be associated with the try block.
Show: