DynamicMetaObject.BindConvert(ConvertBinder) 方法

定义

执行动态转换操作的绑定。Performs the binding of the dynamic conversion operation.

public:
 virtual System::Dynamic::DynamicMetaObject ^ BindConvert(System::Dynamic::ConvertBinder ^ binder);
public virtual System.Dynamic.DynamicMetaObject BindConvert (System.Dynamic.ConvertBinder binder);
abstract member BindConvert : System.Dynamic.ConvertBinder -> System.Dynamic.DynamicMetaObject
override this.BindConvert : System.Dynamic.ConvertBinder -> System.Dynamic.DynamicMetaObject
Public Overridable Function BindConvert (binder As ConvertBinder) As DynamicMetaObject

参数

binder
ConvertBinder

表示动态操作详细信息的 ConvertBinder 实例。An instance of the ConvertBinder that represents the details of the dynamic operation.

返回

DynamicMetaObject

表示绑定结果的新 DynamicMetaObjectThe new DynamicMetaObject representing the result of the binding.

注解

在 Visual Basic 中,仅支持显式转换。In Visual Basic, only explicit conversion is supported. 如果重写此方法,则使用或函数调用它 CTypeDynamic CTypeDynamicIf you override this method, it is called by using the CTypeDynamic or CTypeDynamic functions.

适用于