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
;
283
SingleConsumerUnboundedChannel<T> parent =
_parent
;
342
Exception? doneWriting =
_parent
._doneWriting;
355
new ValueTask(Task.FromException(ChannelUtilities.CreateInvalidCompletionException(
_parent
._doneWriting)));
358
private int ItemsCountForDebugger =>
_parent
._items.Count;
361
IEnumerator<T> IDebugEnumerable<T>.GetEnumerator() =>
_parent
._items.GetEnumerator();