5 writes to AllowSynchronousContinuations
Aspire.Dashboard (2)
ResourceService\DashboardClient.cs (2)
438new UnboundedChannelOptions { AllowSynchronousContinuations = false, SingleReader = true, SingleWriter = true }); 487new 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,
4 references to AllowSynchronousContinuations
System.Threading.Channels (4)
System\Threading\Channels\Channel.cs (3)
27return new SingleConsumerUnboundedChannel<T>(!options.AllowSynchronousContinuations); 30return new UnboundedChannel<T>(!options.AllowSynchronousContinuations); 72return new BoundedChannel<T>(options.Capacity, options.FullMode, !options.AllowSynchronousContinuations, itemDropped);
System\Threading\Channels\Channel.netcoreapp.cs (1)
33return new UnboundedPrioritizedChannel<T>(!options.AllowSynchronousContinuations, options.Comparer);