6 writes to _first
System.Diagnostics.DiagnosticSource (6)
System\Diagnostics\Activity.cs (6)
1745public TagsLinkedList(KeyValuePair<string, object?> firstValue, bool set = false) => _last = _first = ((set && firstValue.Value == null) ? null : new DiagNode<KeyValuePair<string, object?>>(firstValue)); 1749_last = _first = new DiagNode<KeyValuePair<string, object?>>(e.Current); 1773_last = _first = new DiagNode<KeyValuePair<string, object?>>(e.Current); 1796_first = _last = newNode; 1834_first = _first.Next; 1885_first = _last = newNode;
17 references to _first
System.Diagnostics.DiagnosticSource (17)
System\Diagnostics\Activity.cs (17)
1758public DiagNode<KeyValuePair<string, object?>>? First => _first; 1771if (_first == null) 1794if (_first == null) 1810DiagNode<KeyValuePair<string, object?>>? current = _first; 1828if (_first == null) 1832if (_first.Value.Key == key) 1834_first = _first.Next; 1835if (_first is null) 1842DiagNode<KeyValuePair<string, object?>> previous = _first; 1870DiagNode<KeyValuePair<string, object?>>? current = _first; 1883if (_first == null) 1896public DiagEnumerator<KeyValuePair<string, object?>> GetEnumerator() => new DiagEnumerator<KeyValuePair<string, object?>>(_first); 1902DiagNode<KeyValuePair<string, object?>>? current = _first; 1919if (_first == null) 1925_stringBuilder.Append(_first.Value.Key); 1927_stringBuilder.Append(_first.Value.Value); 1929DiagNode<KeyValuePair<string, object?>>? current = _first.Next;