DynamicMetaObjectBinder.Bind Method (array<Object>[]()[], ReadOnlyCollection<(Of <(ParameterExpression>)>), LabelTarget)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Performs the runtime binding of the dynamic operation on a set of arguments.

Namespace:  System.Dynamic
Assembly:  System.Core (in System.Core.dll)

Syntax

Public Overrides NotOverridable Function Bind ( _
    args As Object(), _
    parameters As ReadOnlyCollection(Of ParameterExpression), _
    returnLabel As LabelTarget _
) As Expression
public override sealed Expression Bind(
    Object[] args,
    ReadOnlyCollection<ParameterExpression> parameters,
    LabelTarget returnLabel
)

Parameters

  • args
    Type: array<System..::.Object>[]()[]
    An array of arguments to the dynamic operation.

Return Value

Type: System.Linq.Expressions..::.Expression
An Expression that performs tests on the dynamic operation arguments, and performs the dynamic operation if the tests are valid. If the tests fail on subsequent occurrences of the dynamic operation, Bind will be called again to produce a new Expression for the new argument types.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0

See Also

Reference

DynamicMetaObjectBinder Class

Bind Overload

System.Dynamic Namespace