6 writes to AllowSynchronousContinuations
Aspire.Dashboard (3)
ServiceClient\DashboardClient.cs (3)
566new UnboundedChannelOptions { AllowSynchronousContinuations = false, SingleReader = true, SingleWriter = true }); 611new UnboundedChannelOptions { AllowSynchronousContinuations = false, SingleReader = true, SingleWriter = true }); 657new UnboundedChannelOptions { AllowSynchronousContinuations = false, SingleReader = true, SingleWriter = true });
Aspire.Hosting (2)
Dashboard\ResourcePublisher.cs (1)
50new UnboundedChannelOptions { AllowSynchronousContinuations = false, SingleReader = true, SingleWriter = true });
Dcp\ResourceLogSource.cs (1)
30AllowSynchronousContinuations = false,
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http2\Http2FrameWriter.cs (1)
155AllowSynchronousContinuations = _scheduleInline,
5 references to AllowSynchronousContinuations
System.Threading.Channels (5)
System\Threading\Channels\Channel.cs (4)
25return new SingleConsumerUnboundedChannel<T>(!options.AllowSynchronousContinuations); 28return new UnboundedChannel<T>(!options.AllowSynchronousContinuations); 64options.Capacity > 0 ? new BoundedChannel<T>(options.Capacity, options.FullMode, !options.AllowSynchronousContinuations, itemDropped) : 65new RendezvousChannel<T>(options.FullMode, !options.AllowSynchronousContinuations, itemDropped);
System\Threading\Channels\Channel.netcoreapp.cs (1)
33return new UnboundedPrioritizedChannel<T>(!options.AllowSynchronousContinuations, options.Comparer);