1 write to _parent
System.Threading.Channels (1)
System\Threading\Channels\SingleConsumerUnboundedChannel.cs (1)
207
internal UnboundedChannelWriter(SingleConsumerUnboundedChannel<T> parent) =>
_parent
= parent;
6 references to _parent
System.Threading.Channels (6)
System\Threading\Channels\SingleConsumerUnboundedChannel.cs (6)
215
SingleConsumerUnboundedChannel<T> parent =
_parent
;
281
SingleConsumerUnboundedChannel<T> parent =
_parent
;
340
Exception? doneWriting =
_parent
._doneWriting;
353
new ValueTask(Task.FromException(ChannelUtilities.CreateInvalidCompletionException(
_parent
._doneWriting)));
356
private int ItemsCountForDebugger =>
_parent
._items.Count;
359
IEnumerator<T> IDebugEnumerable<T>.GetEnumerator() =>
_parent
._items.GetEnumerator();