Expression.MakeGoto(GotoExpressionKind, LabelTarget, Expression, Type) Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Vytvoří představující GotoExpression skok zadaného GotoExpressionKindobjektu . Je také možné zadat hodnotu předanou popisku při přeskočení.
public:
static System::Linq::Expressions::GotoExpression ^ MakeGoto(System::Linq::Expressions::GotoExpressionKind kind, System::Linq::Expressions::LabelTarget ^ target, System::Linq::Expressions::Expression ^ value, Type ^ type);
public static System.Linq.Expressions.GotoExpression MakeGoto (System.Linq.Expressions.GotoExpressionKind kind, System.Linq.Expressions.LabelTarget target, System.Linq.Expressions.Expression value, Type type);
public static System.Linq.Expressions.GotoExpression MakeGoto (System.Linq.Expressions.GotoExpressionKind kind, System.Linq.Expressions.LabelTarget target, System.Linq.Expressions.Expression? value, Type type);
static member MakeGoto : System.Linq.Expressions.GotoExpressionKind * System.Linq.Expressions.LabelTarget * System.Linq.Expressions.Expression * Type -> System.Linq.Expressions.GotoExpression
Public Shared Function MakeGoto (kind As GotoExpressionKind, target As LabelTarget, value As Expression, type As Type) As GotoExpression
Parametry
- kind
- GotoExpressionKind
The GotoExpressionKind of the GotoExpression.
- target
- LabelTarget
To LabelTarget , na co GotoExpression přeskočí.
- value
- Expression
Hodnota, která se při přeskočení předá přidruženému popisku.
Návraty
Vlastnost GotoExpression se Kind rovná kind
, vlastnost nastavená Target na target
, vlastnost nastavená Type na a vlastnost nastavená na type
a value
která se při přeskočení předá cílovému popisku.