Expression.MakeGoto Method
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Creates a GotoExpression representing a jump of the specified GotoExpressionKind. The value passed to the label upon jumping can also be specified.
Namespace: System.Linq.Expressions
Assembly: System.Core (in System.Core.dll)
Syntax
'Declaration
Public Shared Function MakeGoto ( _
kind As GotoExpressionKind, _
target As LabelTarget, _
value As Expression, _
type As Type _
) As GotoExpression
public static GotoExpression MakeGoto(
GotoExpressionKind kind,
LabelTarget target,
Expression value,
Type type
)
Parameters
- kind
Type: System.Linq.Expressions.GotoExpressionKind
The GotoExpressionKind of the GotoExpression.
- target
Type: System.Linq.Expressions.LabelTarget
The LabelTarget that the GotoExpression will jump to.
- value
Type: System.Linq.Expressions.Expression
The value that will be passed to the associated label upon jumping.
- type
Type: System.Type
An Type to set the Type property equal to.
Return Value
Type: System.Linq.Expressions.GotoExpression
A GotoExpression with Kind equal to kind, the Target property set to target, the Type property set to type, and value to be passed to the target label upon jumping.
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.