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)
144return _target.OfferMessage(messageHeader, messageValue, this, consumeToAccept); 180void IDataflowBlock.Complete() { _target.Complete(); } 182void IDataflowBlock.Fault(Exception exception) { _target.Fault(exception); } 193var displayTarget = _target as IDebuggerDisplay; 194return $"{Common.GetNameForDebugger(this)} Source = \"{(displaySource != null ? displaySource.Content : _source)}\", Target = \"{(displayTarget != null ? displayTarget.Content : _target)}\""; 215public ITargetBlock<T> LinkedTarget { get { return _filter._target; } }