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.

DynamicExpression::Dynamic Method (CallSiteBinder^, Type^, Expression^, 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^ Dynamic(
	CallSiteBinder^ binder,
	Type^ returnType,
	Expression^ arg0,
	Expression^ arg1
)

Parameters

binder
Type: System.Runtime.CompilerServices::CallSiteBinder^

The runtime binder for the dynamic operation.

returnType
Type: System::Type^

The result type of the dynamic expression.

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.

Return Value

Type: System.Linq.Expressions::DynamicExpression^

A DynamicExpression that has NodeType equal to Dynamic, and has the Binder and Arguments set to the specified values.

The DelegateType property of the result is inferred from the types of the arguments and the specified return type.

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:
© 2017 Microsoft