Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Expression::MakeDynamic Method (Type^, CallSiteBinder^, Expression^, Expression^, Expression^, Expression^)

 

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

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

public:
static DynamicExpression^ MakeDynamic(
	Type^ delegateType,
	CallSiteBinder^ binder,
	Expression^ arg0,
	Expression^ arg1,
	Expression^ arg2,
	Expression^ arg3
)

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.

arg0
Type: System.Linq.Expressions::Expression^

The first argument to the dynamic operation.

arg1
Type: System.Linq.Expressions::Expression^

The second argument to the dynamic operation.

arg2
Type: System.Linq.Expressions::Expression^

The third argument to the dynamic operation.

arg3
Type: System.Linq.Expressions::Expression^

The fourth argument 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.

.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Return to top
Show:
© 2017 Microsoft