4 overrides of Count
System.Threading.Channels (4)
System\Threading\Channels\BoundedChannel.cs (1)
89public override int Count
System\Threading\Channels\RendezvousChannel.cs (1)
79public override int Count => 0;
System\Threading\Channels\UnboundedChannel.cs (1)
66public override int Count => _parent._items.Count;
System\Threading\Channels\UnboundedPriorityChannel.cs (1)
73public override int Count => _parent._items.Count;
5 references to Count
Aspire.Hosting.Azure.Tests (4)
AzureDeployerTests.cs (4)
615Assert.Equal(0, testInteractionService.Interactions.Reader.Count); 810Assert.Equal(0, testInteractionService.Interactions.Reader.Count); 1551if (testInteractionService.Interactions.Reader.Count > 0) 1558Assert.Equal(0, testInteractionService.Interactions.Reader.Count);
System.Threading.Channels (1)
System\Threading\Channels\ChannelReader.cs (1)
23/// <summary>Gets whether <see cref="Count"/> is available for use on this <see cref="ChannelReader{T}"/> instance.</summary>