19 references to DiagNode
System.Diagnostics.DiagnosticSource (19)
System\Diagnostics\Activity.cs (12)
1509private static readonly DiagNode<T> s_Empty = new DiagNode<T>(default!); 1556public BaggageLinkedList(KeyValuePair<string, string?> firstValue, bool set = false) => _first = ((set && firstValue.Value == null) ? null : new DiagNode<KeyValuePair<string, string?>>(firstValue)); 1562DiagNode<KeyValuePair<string, string?>> newNode = new DiagNode<KeyValuePair<string, string?>>(value); 1593DiagNode<KeyValuePair<string, string?>> newNode = new DiagNode<KeyValuePair<string, string?>>(value); 1640public TagsLinkedList(KeyValuePair<string, object?> firstValue, bool set = false) => _last = _first = ((set && firstValue.Value == null) ? null : new DiagNode<KeyValuePair<string, object?>>(firstValue)); 1644_last = _first = new DiagNode<KeyValuePair<string, object?>>(e.Current); 1648_last.Next = new DiagNode<KeyValuePair<string, object?>>(e.Current); 1668_last = _first = new DiagNode<KeyValuePair<string, object?>>(e.Current); 1672_last!.Next = new DiagNode<KeyValuePair<string, object?>>(e.Current); 1678_last.Next = new DiagNode<KeyValuePair<string, object?>>(e.Current); 1685DiagNode<KeyValuePair<string, object?>> newNode = new DiagNode<KeyValuePair<string, object?>>(value); 1777DiagNode<KeyValuePair<string, object?>> newNode = new DiagNode<KeyValuePair<string, object?>>(value);
System\Diagnostics\DiagLinkedList.cs (7)
24public DiagLinkedList(T firstValue) => _last = _first = new DiagNode<T>(firstValue); 29_last = _first = new DiagNode<T>(e.Current); 33_last.Next = new DiagNode<T>(e.Current); 65DiagNode<T> newNode = new DiagNode<T>(value); 88DiagNode<T> newNode = new DiagNode<T>(value); 140DiagNode<T> newNode = new DiagNode<T>(value); 156private static readonly DiagNode<T> s_Empty = new DiagNode<T>(default!);