PropertyDescriptor.GetInvocationTarget(Type, Object) Method
Definition
This method returns the object that should be used during invocation of members.
protected:
override System::Object ^ GetInvocationTarget(Type ^ type, System::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
Parameters
- instance
- Object
The potential invocation target.
Returns
The Object that should be used during invocation of members.
Remarks
Typically, the return value will be the same as the instance
passed in. If someone associated another object with this instance, or if the instance is a custom type descriptor, the GetInvocationTarget method may return a different value.