CallSiteBinder.Bind 方法

定义

对一组参数执行动态操作的运行时绑定。

public:
 abstract System::Linq::Expressions::Expression ^ Bind(cli::array <System::Object ^> ^ args, System::Collections::ObjectModel::ReadOnlyCollection<System::Linq::Expressions::ParameterExpression ^> ^ parameters, System::Linq::Expressions::LabelTarget ^ returnLabel);
public abstract System.Linq.Expressions.Expression Bind (object[] args, System.Collections.ObjectModel.ReadOnlyCollection<System.Linq.Expressions.ParameterExpression> parameters, System.Linq.Expressions.LabelTarget returnLabel);
abstract member Bind : obj[] * System.Collections.ObjectModel.ReadOnlyCollection<System.Linq.Expressions.ParameterExpression> * System.Linq.Expressions.LabelTarget -> System.Linq.Expressions.Expression
Public MustOverride Function Bind (args As Object(), parameters As ReadOnlyCollection(Of ParameterExpression), returnLabel As LabelTarget) As Expression

参数

args
Object[]

动态操作的参数数组。

parameters
ReadOnlyCollection<ParameterExpression>

表示绑定进程中调用站点的参数的 ParameterExpression 实例数组。

returnLabel
LabelTarget

用于返回动态绑定的结果的 LabelTarget。

返回

一个表达式,对动态操作参数执行测试;如果测试有效,则执行动态操作。 如果测试在动态操作的后续匹配项上失败,将再次调用 Bind 为新参数类型生成新的 Expression

适用于