3 writes to _obj
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\ValueTask.cs (3)
82
_obj
= task;
99
_obj
= source;
108
_obj
= obj;
21 references to _obj
System.Private.CoreLib (21)
src\runtime\src\coreclr\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (1)
654
object? obj = task.
_obj
;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncHelpers.cs (2)
210
object? obj = task.
_obj
;
294
object? obj = task.
_obj
;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\ConfiguredValueTaskAwaitable.cs (3)
54
object? obj = _value.
_obj
;
76
object? obj = _value.
_obj
;
96
object? obj = _value.
_obj
;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\ValueTaskAwaiter.cs (3)
49
object? obj = _value.
_obj
;
69
object? obj = _value.
_obj
;
88
object? obj = _value.
_obj
;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\ValueTask.cs (12)
153
public override int GetHashCode() =>
_obj
?.GetHashCode() ?? 0;
161
public bool Equals(ValueTask other) =>
_obj
== other.
_obj
&& _token == other._token;
181
object? obj =
_obj
;
190
public ValueTask Preserve() =>
_obj
== null ? this : new ValueTask(AsTask());
194
/// The <see cref="IValueTaskSource"/> is passed in rather than reading and casting <see cref="
_obj
"/>
307
object? obj =
_obj
;
330
object? obj =
_obj
;
352
object? obj =
_obj
;
379
object? obj =
_obj
;
400
object? obj =
_obj
;
438
new ConfiguredValueTaskAwaitable(new ValueTask(
_obj
, _token, continueOnCapturedContext));