DynamicExpression.Dynamic Method (CallSiteBinder, Type, IEnumerable(Of Expression))
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates a DynamicExpression that represents a dynamic operation bound by the provided CallSiteBinder.
Assembly: System.Core (in System.Core.dll)
'Declaration Public Shared Function Dynamic ( _ binder As CallSiteBinder, _ returnType As Type, _ arguments As IEnumerable(Of Expression) _ ) As 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.Collections.Generic.IEnumerable(Of 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 is inferred from the types of the arguments and the specified return type.
Show: