PropertyDescriptor.GetInvocationTarget(Type, Object) 方法

定义

此方法返回应在成员调用期间使用的对象。

protected:
 override System::Object ^ GetInvocationTarget(Type ^ type, System::Object ^ instance);
protected override object GetInvocationTarget (Type type, object instance);
protected override object? GetInvocationTarget (Type type, object instance);
override this.GetInvocationTarget : Type * obj -> obj
Protected Overrides Function GetInvocationTarget (type As Type, instance As Object) As Object

参数

type
Type

调用目标的 Type

instance
Object

潜在的调用目标。

返回

应在成员调用期间使用的 Object

注解

通常,返回值将与传入的 相同 instance 。 如果有人与此实例关联了另一个对象,或者该实例是自定义类型描述符,该方法 GetInvocationTarget 可能会返回不同的值。

适用于