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