4 overrides of Count
System.Threading.Channels (4)
System\Threading\Channels\BoundedChannel.cs (1)
89
public override int
Count
System\Threading\Channels\RendezvousChannel.cs (1)
79
public override int
Count
=> 0;
System\Threading\Channels\UnboundedChannel.cs (1)
66
public override int
Count
=> _parent._items.Count;
System\Threading\Channels\UnboundedPriorityChannel.cs (1)
73
public override int
Count
=> _parent._items.Count;
5 references to Count
Aspire.Hosting.Azure.Tests (4)
AzureDeployerTests.cs (4)
615
Assert.Equal(0, testInteractionService.Interactions.Reader.
Count
);
810
Assert.Equal(0, testInteractionService.Interactions.Reader.
Count
);
1551
if (testInteractionService.Interactions.Reader.
Count
> 0)
1558
Assert.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>