32 references to GetNameForDebugger
System.Threading.Tasks.Dataflow (32)
Base\DataflowBlock.cs (6)
194return $"{Common.GetNameForDebugger(this)} Source = \"{(displaySource != null ? displaySource.Content : _source)}\", Target = \"{(displayTarget != null ? displayTarget.Content : _target)}\""; 724return $"{Common.GetNameForDebugger(this)} Message = {_messageValue}, Target = \"{(displayTarget != null ? displayTarget.Content : _target)}\""; 1360private object DebuggerDisplayContent => $"{Common.GetNameForDebugger(this)} IsCompleted = {base.Task.IsCompleted}"; 1485private object DebuggerDisplayContent => $"{Common.GetNameForDebugger(this)} IsCompleted = {base.Task.IsCompleted}"; 1606return $"{Common.GetNameForDebugger(this)} Target = \"{(displayTarget != null ? displayTarget.Content : _target)}\", Source = \"{(displaySource != null ? displaySource.Content : _source)}\""; 2138private object DebuggerDisplayContent => $"{Common.GetNameForDebugger(this)} IsCompleted = {base.Task.IsCompleted}";
Blocks\ActionBlock.cs (2)
303return Common.GetNameForDebugger(this, _defaultTarget != null ? _defaultTarget.DataflowBlockOptions : _spscTarget!.DataflowBlockOptions); 308$"{(Common.GetNameForDebugger(this, _defaultTarget != null ? _defaultTarget.DataflowBlockOptions : _spscTarget!.DataflowBlockOptions))}, InputCount = {InputCountForDebugger}";
Blocks\BatchBlock.cs (2)
176public override string ToString() { return Common.GetNameForDebugger(this, _source.DataflowBlockOptions); } 180$"{Common.GetNameForDebugger(this, _source.DataflowBlockOptions)}, BatchSize = {BatchSize}, OutputCount = {OutputCountForDebugger}";
Blocks\BatchedJoinBlock.cs (5)
206public override string ToString() { return Common.GetNameForDebugger(this, _source.DataflowBlockOptions); } 210$"{Common.GetNameForDebugger(this, _source.DataflowBlockOptions)}, BatchSize = {BatchSize}, OutputCount = {OutputCountForDebugger}"; 461public override string ToString() { return Common.GetNameForDebugger(this, _source.DataflowBlockOptions); } 465$"{Common.GetNameForDebugger(this, _source.DataflowBlockOptions)}, BatchSize = {BatchSize}, OutputCount = {OutputCountForDebugger}"; 628$"{Common.GetNameForDebugger(this)} InputCount = {_messages.Count}";
Blocks\BroadcastBlock.cs (2)
438public override string ToString() { return Common.GetNameForDebugger(this, _source.DataflowBlockOptions); } 441private object DebuggerDisplayContent => $"{Common.GetNameForDebugger(this, _source.DataflowBlockOptions)}, HasValue = {HasValueForDebugger}, Value = {ValueForDebugger}";
Blocks\BufferBlock.cs (2)
421public override string ToString() { return Common.GetNameForDebugger(this, _source.DataflowBlockOptions); } 425$"{Common.GetNameForDebugger(this, _source.DataflowBlockOptions)}, Count = {CountForDebugger}";
Blocks\JoinBlock.cs (5)
184public override string ToString() { return Common.GetNameForDebugger(this, _source.DataflowBlockOptions); } 188$"{Common.GetNameForDebugger(this, _source.DataflowBlockOptions)}, OutputCount = {OutputCountForDebugger}"; 408public override string ToString() { return Common.GetNameForDebugger(this, _source.DataflowBlockOptions); } 412$"{Common.GetNameForDebugger(this, _source.DataflowBlockOptions)} OutputCount = {OutputCountForDebugger}"; 946return $"{Common.GetNameForDebugger(this)} InputCount = {InputCountForDebugger}, Join = \"{(displayJoin != null ? displayJoin.Content : _sharedResources._ownerJoin)}\"";
Blocks\TransformBlock.cs (2)
394public override string ToString() { return Common.GetNameForDebugger(this, _source.DataflowBlockOptions); } 398$"{Common.GetNameForDebugger(this, _source.DataflowBlockOptions)}, InputCount = {InputCountForDebugger}, OutputCount = {OutputCountForDebugger}";
Blocks\TransformManyBlock.cs (2)
603public override string ToString() { return Common.GetNameForDebugger(this, _source.DataflowBlockOptions); } 607$"{Common.GetNameForDebugger(this, _source.DataflowBlockOptions)}, InputCount = {InputCountForDebugger}, OutputCount = {OutputCountForDebugger}";
Blocks\WriteOnceBlock.cs (2)
503public override string ToString() { return Common.GetNameForDebugger(this, _dataflowBlockOptions); } 507$"{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)}\"";