CallSiteBinder.Bind 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
对一组参数执行动态操作的运行时绑定。
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。