Skip to content

Instantly share code, notes, and snippets.

@stevejgordon
Created October 14, 2020 08:34
Show Gist options
  • Save stevejgordon/c98b4df6bae4d4a993cd87277bb7e271 to your computer and use it in GitHub Desktop.
Save stevejgordon/c98b4df6bae4d4a993cd87277bb7e271 to your computer and use it in GitHub Desktop.
if (cancellationToken.IsCancellationRequested)
{
return new ValueTask<bool>(Task.FromCanceled<bool>(cancellationToken));
}
if (!_parent._items.IsEmpty)
{
return new ValueTask<bool>(true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment