DependentHandle.TargetAndDependent Property

Definition

Gets the values of both Target and Dependent (if available) as an atomic operation. That is, even if Target is concurrently set to null, calling this method will either return null for both target and dependent, or return both previous values. If Target and Dependent were used sequentially in this scenario instead, it would be possible to sometimes successfully retrieve the previous target, but then fail to get the dependent.

public:
 property ValueTuple<System::Object ^, System::Object ^> TargetAndDependent { ValueTuple<System::Object ^, System::Object ^> get(); };
public (object? Target, object? Dependent) TargetAndDependent { get; }
member this.TargetAndDependent : ValueTuple<obj, obj>
Public ReadOnly Property TargetAndDependent As ValueTuple(Of Object, Object)

Property Value

The values of Target and Dependent.

Exceptions

Remarks

This property is thread-safe.

Applies to