Expression.MakeDynamic Method (Type, CallSiteBinder, IEnumerable<Expression>)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Creates a DynamicExpression that represents a dynamic operation bound by the provided CallSiteBinder.
Namespace: System.Linq.Expressions
Assembly: System.Core (in System.Core.dll)
Syntax
'Declaration
Public Shared Function MakeDynamic ( _
delegateType As Type, _
binder As CallSiteBinder, _
arguments As IEnumerable(Of Expression) _
) As DynamicExpression
public static DynamicExpression MakeDynamic(
Type delegateType,
CallSiteBinder binder,
IEnumerable<Expression> arguments
)
Parameters
- delegateType
Type: System.Type
The type of the delegate used by the CallSite.
- binder
Type: System.Runtime.CompilerServices.CallSiteBinder
The runtime binder for the dynamic operation.
- arguments
Type: System.Collections.Generic.IEnumerable<Expression>
The arguments to the dynamic operation.
Return Value
Type: System.Linq.Expressions.DynamicExpression
A DynamicExpression that has NodeType equal to Dynamic and has the DelegateType, Binder, and Arguments set to the specified values.
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.