1 write to _owningSource
System.Threading.Tasks.Dataflow (1)
Internal\SourceCore.cs (1)
113
_owningSource
= owningSource;
15 references to _owningSource
System.Threading.Tasks.Dataflow (15)
Internal\SourceCore.cs (15)
120
_targetRegistry = new TargetRegistry<TOutput>(
_owningSource
);
209
int count = _itemCountingFunc != null ? _itemCountingFunc(
_owningSource
, consumedMessageValue, null) : 1;
210
_itemsRemovedAction(
_owningSource
, count);
320
int count = _itemCountingFunc != null ? _itemCountingFunc(
_owningSource
, item!, null) : 1;
321
_itemsRemovedAction(
_owningSource
, count);
367
int count = _itemCountingFunc != null ? _itemCountingFunc(
_owningSource
, default(TOutput)!, items) : countReceived;
368
_itemsRemovedAction(
_owningSource
, count);
652
int count = _itemCountingFunc != null ? _itemCountingFunc(
_owningSource
, message!, null) : 1;
653
_itemsRemovedAction(
_owningSource
, count);
677
DataflowMessageStatus result = target.OfferMessage(header, message,
_owningSource
, consumeToAccept: false);
766
_owningSource
, _taskForOutputProcessing, DataflowEtwProvider.TaskLaunchedReason.OfferingOutputMessages, _messages.Count);
849
_completeAction(
_owningSource
);
978
etwLog.DataflowBlockCompleted(
_owningSource
);
987
var displaySource =
_owningSource
as IDebuggerDisplay;
988
return $"Block = \"{(displaySource != null ? displaySource.Content :
_owningSource
)}\"";