1 write to _target
System.Threading.Tasks.Dataflow (1)
Internal\TargetRegistry.cs (1)
317_target = target;
6 references to _target
System.Threading.Tasks.Dataflow (6)
Internal\TargetRegistry.cs (6)
324return _target.OfferMessage(messageHeader, messageValue, this, consumeToAccept); 348void IDataflowBlock.Complete() { _target.Complete(); } 350void IDataflowBlock.Fault(Exception exception) { _target.Fault(exception); } 361var displayTarget = _target as IDebuggerDisplay; 362return $"{Common.GetNameForDebugger(this)} Source = \"{(displaySource != null ? displaySource.Content : _owningSource)}\", Target = \"{(displayTarget != null ? displayTarget.Content : _target)}\""; 383public ITargetBlock<T> LinkedTarget { get { return _passthrough._target; } }