IWrappedMember.GetWrappedObject Method

Definition

When implemented in a class, returns the object that a member is defined on.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 System::Object ^ GetWrappedObject();
public object GetWrappedObject ();
abstract member GetWrappedObject : unit -> obj
Public Function GetWrappedObject () As Object

Returns

The object that a member is defined on.

Remarks

Each wrapped object contains the information for one member (field, property, or method), together with a copy of the instantiated object that the member is defined on. This enables other objects that do not contain the member to store it and then return its value as if it were their own.

Applies to

See also