Expression.Dynamic Method (CallSiteBinder, Type, Expression[])
.NET Framework (current version)
Creates a DynamicExpression that represents a dynamic operation bound by the provided CallSiteBinder.
Assembly: System.Core (in System.Core.dll)
static member Dynamic : binder:CallSiteBinder * returnType:Type * [<ParamArrayAttribute>] arguments:Expression[] -> DynamicExpression
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.
- arguments
-
Type:
System.Linq.Expressions.Expression[]
The arguments to the dynamic operation.
Return Value
Type: System.Linq.Expressions.DynamicExpressionA DynamicExpression that has NodeType equal to Dynamic and has the Binder and Arguments set to the specified values.
The DelegateType property of the result will be inferred from the types of the arguments and the specified return type.
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Show: