Expression.Return Metodo

Definizione

Crea un oggetto GotoExpression che rappresenta un'istruzione return.

Overload

Nome Descrizione
Return(LabelTarget)

Crea un oggetto GotoExpression che rappresenta un'istruzione return.

Return(LabelTarget, Expression)

Crea un oggetto GotoExpression che rappresenta un'istruzione return. È possibile specificare il valore passato all'etichetta al passaggio.

Return(LabelTarget, Type)

Crea un oggetto GotoExpression che rappresenta un'istruzione return con il tipo specificato.

Return(LabelTarget, Expression, Type)

Crea un oggetto GotoExpression che rappresenta un'istruzione return con il tipo specificato. È possibile specificare il valore passato all'etichetta al passaggio.

Return(LabelTarget)

Crea un oggetto GotoExpression che rappresenta un'istruzione return.

public:
 static System::Linq::Expressions::GotoExpression ^ Return(System::Linq::Expressions::LabelTarget ^ target);
public static System.Linq.Expressions.GotoExpression Return(System.Linq.Expressions.LabelTarget target);
static member Return : System.Linq.Expressions.LabelTarget -> System.Linq.Expressions.GotoExpression
Public Shared Function Return (target As LabelTarget) As GotoExpression

Parametri

target
LabelTarget

Oggetto LabelTarget a cui passerà.GotoExpression

Valori restituiti

Oggetto GotoExpression con Kind uguale a Return, la Target proprietà impostata su targete un valore Null da passare all'etichetta di destinazione al passaggio.

Si applica a

Return(LabelTarget, Expression)

Crea un oggetto GotoExpression che rappresenta un'istruzione return. È possibile specificare il valore passato all'etichetta al passaggio.

public:
 static System::Linq::Expressions::GotoExpression ^ Return(System::Linq::Expressions::LabelTarget ^ target, System::Linq::Expressions::Expression ^ value);
public static System.Linq.Expressions.GotoExpression Return(System.Linq.Expressions.LabelTarget target, System.Linq.Expressions.Expression value);
static member Return : System.Linq.Expressions.LabelTarget * System.Linq.Expressions.Expression -> System.Linq.Expressions.GotoExpression
Public Shared Function Return (target As LabelTarget, value As Expression) As GotoExpression

Parametri

target
LabelTarget

Oggetto LabelTarget a cui passerà.GotoExpression

value
Expression

Valore che verrà passato all'etichetta associata al passaggio.

Valori restituiti

Oggetto GotoExpression con Kind uguale a Continue, la Target proprietà impostata su targete value da passare all'etichetta di destinazione al passaggio.

Esempio

Nell'esempio seguente viene illustrato come creare un'espressione contenente il Return metodo .

// Add the following directive to the file:
// using System.Linq.Expressions;

// A label expression of the void type that is the target for Expression.Return().
LabelTarget returnTarget = Expression.Label();

// This block contains a GotoExpression that represents a return statement with no value.
// It transfers execution to a label expression that is initialized with the same LabelTarget as the GotoExpression.
// The types of the GotoExpression, label expression, and LabelTarget must match.
BlockExpression blockExpr =
    Expression.Block(
        Expression.Call(typeof(Console).GetMethod("WriteLine", new Type[] { typeof(string) }), Expression.Constant("Return")),
        Expression.Return(returnTarget),
        Expression.Call(typeof(Console).GetMethod("WriteLine", new Type[] { typeof(string) }), Expression.Constant("Other Work")),
        Expression.Label(returnTarget)
    );

// The following statement first creates an expression tree,
// then compiles it, and then runs it.
Expression.Lambda<Action>(blockExpr).Compile()();

// This code example produces the following output:
//
// Return

// "Other Work" is not printed because
// the Return expression transfers execution from Expression.Return(returnTarget)
// to Expression.Label(returnTarget).
' Add the following directive to the file:
' Imports System.Linq.Expressions  

' A label expression of the void type that is the target for Expression.Return().
Dim returnTarget As LabelTarget = Expression.Label()

' This block contains a GotoExpression that represents a return statement with no value.
' It transfers execution to a label expression that is initialized with the same LabelTarget as the GotoExpression.
' The types of the GotoExpression, label expression, and LabelTarget must match.
Dim blockExpr As BlockExpression =
      Expression.Block(
          Expression.Call(GetType(Console).GetMethod("WriteLine", New Type() {GetType(String)}), Expression.Constant("Return")),
          Expression.Return(returnTarget),
          Expression.Call(GetType(Console).GetMethod("WriteLine", New Type() {GetType(String)}), Expression.Constant("Other Work")),
          Expression.Label(returnTarget)
      )

' The following statement first creates an expression tree,
' then compiles it, and then runs it.
Expression.Lambda(Of Action)(blockExpr).Compile()()

' This code example produces the following output:
'
' Return

' "Other Work" is not printed because 
' the Return expression transfers execution from Return(returnTarget)
' to Expression.Label(returnTarget).

Si applica a

Return(LabelTarget, Type)

Crea un oggetto GotoExpression che rappresenta un'istruzione return con il tipo specificato.

public:
 static System::Linq::Expressions::GotoExpression ^ Return(System::Linq::Expressions::LabelTarget ^ target, Type ^ type);
public static System.Linq.Expressions.GotoExpression Return(System.Linq.Expressions.LabelTarget target, Type type);
static member Return : System.Linq.Expressions.LabelTarget * Type -> System.Linq.Expressions.GotoExpression
Public Shared Function Return (target As LabelTarget, type As Type) As GotoExpression

Parametri

target
LabelTarget

Oggetto LabelTarget a cui passerà.GotoExpression

type
Type

Oggetto Type su cui impostare la Type proprietà uguale.

Valori restituiti

Oggetto GotoExpression con Kind uguale a Return, la Target proprietà impostata su target, la Type proprietà impostata su typee un valore Null da passare all'etichetta di destinazione al passaggio.

Si applica a

Return(LabelTarget, Expression, Type)

Crea un oggetto GotoExpression che rappresenta un'istruzione return con il tipo specificato. È possibile specificare il valore passato all'etichetta al passaggio.

public:
 static System::Linq::Expressions::GotoExpression ^ Return(System::Linq::Expressions::LabelTarget ^ target, System::Linq::Expressions::Expression ^ value, Type ^ type);
public static System.Linq.Expressions.GotoExpression Return(System.Linq.Expressions.LabelTarget target, System.Linq.Expressions.Expression value, Type type);
static member Return : System.Linq.Expressions.LabelTarget * System.Linq.Expressions.Expression * Type -> System.Linq.Expressions.GotoExpression
Public Shared Function Return (target As LabelTarget, value As Expression, type As Type) As GotoExpression

Parametri

target
LabelTarget

Oggetto LabelTarget a cui passerà.GotoExpression

value
Expression

Valore che verrà passato all'etichetta associata al passaggio.

type
Type

Oggetto Type su cui impostare la Type proprietà uguale.

Valori restituiti

Oggetto GotoExpression con Kind uguale a Continue, la Target proprietà impostata su , la Type proprietà impostata targetsu typee value da passare all'etichetta di destinazione al passaggio.

Si applica a