2 writes to _currentId
System.Threading.Channels (2)
System\Threading\Channels\AsyncOperation.cs (2)
458_currentId++; 503_currentId++;
10 references to _currentId
System.Threading.Channels (10)
System\Threading\Channels\AsyncOperation.cs (10)
290/// <param name="token">The current token that must match <see cref="_currentId"/>.</param> 294if (_currentId != token) 425public ValueTask ValueTask => new ValueTask(this, _currentId); 428/// <param name="token">The token that must match <see cref="AsyncOperation._currentId"/>.</param> 431if (_currentId != token) 444/// <param name="token">The token that must match <see cref="AsyncOperation._currentId"/>.</param> 447if (_currentId != token) 485public ValueTask<TResult> ValueTaskOfT => new ValueTask<TResult>(this, _currentId); 488/// <param name="token">The token that must match <see cref="AsyncOperation._currentId"/>.</param> 491if (_currentId != token)