6 writes to _first
System.Diagnostics.DiagnosticSource (6)
System\Diagnostics\Activity.cs (6)
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); 1668_last = _first = new DiagNode<KeyValuePair<string, object?>>(e.Current); 1691_first = _last = newNode; 1729_first = _first.Next; 1780_first = _last = newNode;
17 references to _first
System.Diagnostics.DiagnosticSource (17)
System\Diagnostics\Activity.cs (17)
1653public DiagNode<KeyValuePair<string, object?>>? First => _first; 1666if (_first == null) 1689if (_first == null) 1705DiagNode<KeyValuePair<string, object?>>? current = _first; 1723if (_first == null) 1727if (_first.Value.Key == key) 1729_first = _first.Next; 1730if (_first is null) 1737DiagNode<KeyValuePair<string, object?>> previous = _first; 1765DiagNode<KeyValuePair<string, object?>>? current = _first; 1778if (_first == null) 1791public DiagEnumerator<KeyValuePair<string, object?>> GetEnumerator() => new DiagEnumerator<KeyValuePair<string, object?>>(_first); 1797DiagNode<KeyValuePair<string, object?>>? current = _first; 1814if (_first == null) 1820_stringBuilder.Append(_first.Value.Key); 1822_stringBuilder.Append(_first.Value.Value); 1824DiagNode<KeyValuePair<string, object?>>? current = _first.Next;