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