1 write to _parent
System.Threading.Channels (1)
System\Threading\Channels\UnboundedChannel.cs (1)
199internal UnboundedChannelWriter(UnboundedChannel<T> parent) => _parent = parent;
6 references to _parent
System.Threading.Channels (6)
System\Threading\Channels\UnboundedChannel.cs (6)
203UnboundedChannel<T> parent = _parent; 243UnboundedChannel<T> parent = _parent; 303Exception? doneWriting = _parent._doneWriting; 314new ValueTask(Task.FromException(ChannelUtilities.CreateInvalidCompletionException(_parent._doneWriting))); 317private int ItemsCountForDebugger => _parent._items.Count; 320IEnumerator<T> IDebugEnumerable<T>.GetEnumerator() => _parent._items.GetEnumerator();