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