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