1 write to _target
System.Threading.Tasks.Dataflow (1)
Base\DataflowBlock.cs (1)
114
_target
= target;
6 references to _target
System.Threading.Tasks.Dataflow (6)
Base\DataflowBlock.cs (6)
144
return
_target
.OfferMessage(messageHeader, messageValue, this, consumeToAccept);
180
void IDataflowBlock.Complete() {
_target
.Complete(); }
182
void IDataflowBlock.Fault(Exception exception) {
_target
.Fault(exception); }
193
var displayTarget =
_target
as IDebuggerDisplay;
194
return $"{Common.GetNameForDebugger(this)} Source = \"{(displaySource != null ? displaySource.Content : _source)}\", Target = \"{(displayTarget != null ? displayTarget.Content :
_target
)}\"";
215
public ITargetBlock<T> LinkedTarget { get { return _filter.
_target
; } }