PropertyDescriptor.GetInvocationTarget(Type, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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);
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.