Expression.Lambda Method (Type, Expression, array<ParameterExpression[])

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Creates a LambdaExpression by first constructing a delegate type. It can be used when the delegate type is not known at compile time.

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

Syntax

'Declaration
Public Shared Function Lambda ( _
    delegateType As Type, _
    body As Expression, _
    ParamArray parameters As ParameterExpression() _
) As LambdaExpression
public static LambdaExpression Lambda(
    Type delegateType,
    Expression body,
    params ParameterExpression[] parameters
)

Parameters

  • delegateType
    Type: System.Type
    A Type that represents a delegate signature for the lambda.

Return Value

Type: System.Linq.Expressions.LambdaExpression
An object that represents a lambda expression which has the NodeType property equal to Lambda and the Body and Parameters properties set to the specified values.

Exceptions

Exception Condition
ArgumentNullException

delegateType or body is nulla null reference (Nothing in Visual Basic).

-or-

One or more elements in parameters are nulla null reference (Nothing in Visual Basic).

ArgumentException

delegateType does not represent a delegate type.

-or-

body.Type represents a type that is not assignable to the return type of the delegate type represented by delegateType.

-or-

parameters does not contain the same number of elements as the list of parameters for the delegate type represented by delegateType.

-or-

The Type property of an element of parameters is not assignable from the type of the corresponding parameter type of the delegate type represented by delegateType.

Remarks

The object that is returned from this function is of type Expression<TDelegate>. The LambdaExpression type is used to represent the returned object because the concrete type of the lambda expression is not known at compile time.

The number of parameters for the delegate type represented by delegateType must equal the length of parameters.

The elements of parameters must be reference equal to the parameter expressions in body.

The Type property of the resulting object is equal to delegateType. If parameters is nulla null reference (Nothing in Visual Basic), the Parameters property of the resulting object is an empty collection.

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.