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.

DynamicMetaObjectBinder::Bind Method (array<Object^>^, ReadOnlyCollection<ParameterExpression^>^, LabelTarget^)

 

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

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

public:
virtual Expression^ Bind(
	array<Object^>^ args,
	ReadOnlyCollection<ParameterExpression^>^ parameters,
	LabelTarget^ returnLabel
) override sealed

Parameters

args
Type: array<System::Object^>^

An array of arguments to the dynamic operation.

parameters
Type: System.Collections.ObjectModel::ReadOnlyCollection<ParameterExpression^>^

The array of ParameterExpression instances that represent the parameters of the call site in the binding process.

returnLabel
Type: System.Linq.Expressions::LabelTarget^

A LabelTarget used to return the result of the dynamic binding.

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.

Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Return to top
Show:
© 2017 Microsoft