32 references to GetNameForDebugger
System.Threading.Tasks.Dataflow (32)
Base\DataflowBlock.cs (6)
212return $"{Common.GetNameForDebugger(this)} Source = \"{(displaySource != null ? displaySource.Content : _source)}\", Target = \"{(displayTarget != null ? displayTarget.Content : _target)}\""; 748return $"{Common.GetNameForDebugger(this)} Message = {_messageValue}, Target = \"{(displayTarget != null ? displayTarget.Content : _target)}\""; 1393private object DebuggerDisplayContent => $"{Common.GetNameForDebugger(this)} IsCompleted = {base.Task.IsCompleted}"; 1578private object DebuggerDisplayContent => $"{Common.GetNameForDebugger(this)} IsCompleted = {base.Task.IsCompleted}"; 1708return $"{Common.GetNameForDebugger(this)} Target = \"{(displayTarget != null ? displayTarget.Content : _target)}\", Source = \"{(displaySource != null ? displaySource.Content : _source)}\""; 2276private object DebuggerDisplayContent => $"{Common.GetNameForDebugger(this)} IsCompleted = {base.Task.IsCompleted}";
Blocks\ActionBlock.cs (2)
312return Common.GetNameForDebugger(this, _defaultTarget != null ? _defaultTarget.DataflowBlockOptions : _spscTarget!.DataflowBlockOptions); 317$"{(Common.GetNameForDebugger(this, _defaultTarget != null ? _defaultTarget.DataflowBlockOptions : _spscTarget!.DataflowBlockOptions))}, InputCount = {InputCountForDebugger}";
Blocks\BatchBlock.cs (2)
179public override string ToString() { return Common.GetNameForDebugger(this, _source.DataflowBlockOptions); } 183$"{Common.GetNameForDebugger(this, _source.DataflowBlockOptions)}, BatchSize = {BatchSize}, OutputCount = {OutputCountForDebugger}";
Blocks\BatchedJoinBlock.cs (5)
209public override string ToString() { return Common.GetNameForDebugger(this, _source.DataflowBlockOptions); } 213$"{Common.GetNameForDebugger(this, _source.DataflowBlockOptions)}, BatchSize = {BatchSize}, OutputCount = {OutputCountForDebugger}"; 467public override string ToString() { return Common.GetNameForDebugger(this, _source.DataflowBlockOptions); } 471$"{Common.GetNameForDebugger(this, _source.DataflowBlockOptions)}, BatchSize = {BatchSize}, OutputCount = {OutputCountForDebugger}"; 637$"{Common.GetNameForDebugger(this)} InputCount = {_messages.Count}";
Blocks\BroadcastBlock.cs (2)
444public override string ToString() { return Common.GetNameForDebugger(this, _source.DataflowBlockOptions); } 447private object DebuggerDisplayContent => $"{Common.GetNameForDebugger(this, _source.DataflowBlockOptions)}, HasValue = {HasValueForDebugger}, Value = {ValueForDebugger}";
Blocks\BufferBlock.cs (2)
427public override string ToString() { return Common.GetNameForDebugger(this, _source.DataflowBlockOptions); } 431$"{Common.GetNameForDebugger(this, _source.DataflowBlockOptions)}, Count = {CountForDebugger}";
Blocks\JoinBlock.cs (5)
190public override string ToString() { return Common.GetNameForDebugger(this, _source.DataflowBlockOptions); } 194$"{Common.GetNameForDebugger(this, _source.DataflowBlockOptions)}, OutputCount = {OutputCountForDebugger}"; 420public override string ToString() { return Common.GetNameForDebugger(this, _source.DataflowBlockOptions); } 424$"{Common.GetNameForDebugger(this, _source.DataflowBlockOptions)} OutputCount = {OutputCountForDebugger}"; 961return $"{Common.GetNameForDebugger(this)} InputCount = {InputCountForDebugger}, Join = \"{(displayJoin != null ? displayJoin.Content : _sharedResources._ownerJoin)}\"";
Blocks\TransformBlock.cs (2)
400public override string ToString() { return Common.GetNameForDebugger(this, _source.DataflowBlockOptions); } 404$"{Common.GetNameForDebugger(this, _source.DataflowBlockOptions)}, InputCount = {InputCountForDebugger}, OutputCount = {OutputCountForDebugger}";
Blocks\TransformManyBlock.cs (2)
606public override string ToString() { return Common.GetNameForDebugger(this, _source.DataflowBlockOptions); } 610$"{Common.GetNameForDebugger(this, _source.DataflowBlockOptions)}, InputCount = {InputCountForDebugger}, OutputCount = {OutputCountForDebugger}";
Blocks\WriteOnceBlock.cs (2)
515public override string ToString() { return Common.GetNameForDebugger(this, _dataflowBlockOptions); } 519$"{Common.GetNameForDebugger(this, _dataflowBlockOptions)}, HasValue = {HasValue}, Value = {Value}";
Internal\DataflowEtwProvider.cs (1)
72Common.GetNameForDebugger(block, dataflowBlockOptions),
Internal\TargetRegistry.cs (1)
362return $"{Common.GetNameForDebugger(this)} Source = \"{(displaySource != null ? displaySource.Content : _owningSource)}\", Target = \"{(displayTarget != null ? displayTarget.Content : _target)}\"";