1 write to _parent
System.Threading.Channels (1)
System\Threading\Channels\UnboundedChannel.cs (1)
186
internal UnboundedChannelWriter(UnboundedChannel<T> parent) =>
_parent
= parent;
6 references to _parent
System.Threading.Channels (6)
System\Threading\Channels\UnboundedChannel.cs (6)
190
UnboundedChannel<T> parent =
_parent
;
240
UnboundedChannel<T> parent =
_parent
;
279
Exception? doneWriting =
_parent
._doneWriting;
290
new ValueTask(Task.FromException(ChannelUtilities.CreateInvalidCompletionException(
_parent
._doneWriting)));
293
private int ItemsCountForDebugger =>
_parent
._items.Count;
296
IEnumerator<T> IDebugEnumerable<T>.GetEnumerator() =>
_parent
._items.GetEnumerator();