19 references to DiagNode
System.Diagnostics.DiagnosticSource (19)
System\Diagnostics\Activity.cs (12)
1508
private static readonly DiagNode<T> s_Empty = new
DiagNode
<T>(default!);
1555
public BaggageLinkedList(KeyValuePair<string, string?> firstValue, bool set = false) => _first = ((set && firstValue.Value == null) ? null : new
DiagNode
<KeyValuePair<string, string?>>(firstValue));
1561
DiagNode<KeyValuePair<string, string?>> newNode = new
DiagNode
<KeyValuePair<string, string?>>(value);
1592
DiagNode<KeyValuePair<string, string?>> newNode = new
DiagNode
<KeyValuePair<string, string?>>(value);
1639
public TagsLinkedList(KeyValuePair<string, object?> firstValue, bool set = false) => _last = _first = ((set && firstValue.Value == null) ? null : new
DiagNode
<KeyValuePair<string, object?>>(firstValue));
1643
_last = _first = new
DiagNode
<KeyValuePair<string, object?>>(e.Current);
1647
_last.Next = new
DiagNode
<KeyValuePair<string, object?>>(e.Current);
1667
_last = _first = new
DiagNode
<KeyValuePair<string, object?>>(e.Current);
1671
_last!.Next = new
DiagNode
<KeyValuePair<string, object?>>(e.Current);
1677
_last.Next = new
DiagNode
<KeyValuePair<string, object?>>(e.Current);
1684
DiagNode<KeyValuePair<string, object?>> newNode = new
DiagNode
<KeyValuePair<string, object?>>(value);
1776
DiagNode<KeyValuePair<string, object?>> newNode = new
DiagNode
<KeyValuePair<string, object?>>(value);
System\Diagnostics\DiagLinkedList.cs (7)
25
public DiagLinkedList(T firstValue) => _last = _first = new
DiagNode
<T>(firstValue);
30
_last = _first = new
DiagNode
<T>(e.Current);
34
_last.Next = new
DiagNode
<T>(e.Current);
66
DiagNode<T> newNode = new
DiagNode
<T>(value);
89
DiagNode<T> newNode = new
DiagNode
<T>(value);
141
DiagNode<T> newNode = new
DiagNode
<T>(value);
272
private static readonly DiagNode<T> s_Empty = new
DiagNode
<T>(default!);