DynamicExpression::MakeDynamic Method (Type^, CallSiteBinder^, array<Expression^>^)

.NET Framework (current version)
 

Creates a DynamicExpression that represents a dynamic operation bound by the provided CallSiteBinder.

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

public:
static DynamicExpression^ MakeDynamic(
	Type^ delegateType,
	CallSiteBinder^ binder,
	... array<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: array<System.Linq.Expressions::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.

Universal Windows Platform
Available since 8
.NET Framework
Available since 4.5
Portable Class Library
Supported in: portable .NET platforms
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Return to top
Show: