DependentHandle.Dependent Property  
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.
Gets or sets the dependent object instance for the current handle.
public:
 property System::Object ^ Dependent { System::Object ^ get(); void set(System::Object ^ value); };public object? Dependent { get; set; }member this.Dependent : obj with get, setPublic Property Dependent As ObjectProperty Value
Exceptions
IsAllocated is false.
Remarks
If you need to retrieve both Target and Dependent, ensure that the returned instance from Target will be kept alive until Dependent is retrieved as well, or it might be collected and result in unexpected behavior. This can be done by storing the target in a local and calling KeepAlive(Object) on it after Dependent is accessed.