DependentHandle.TargetAndDependent 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 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
IsAllocated is false
.
Remarks
This property is thread-safe.