6 writes to _first
System.Diagnostics.DiagnosticSource (6)
System\Diagnostics\Activity.cs (6)
1639public 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); 1667_last = _first = new DiagNode<KeyValuePair<string, object?>>(e.Current); 1690_first = _last = newNode; 1728_first = _first.Next; 1779_first = _last = newNode;
17 references to _first
System.Diagnostics.DiagnosticSource (17)
System\Diagnostics\Activity.cs (17)
1652public DiagNode<KeyValuePair<string, object?>>? First => _first; 1665if (_first == null) 1688if (_first == null) 1704DiagNode<KeyValuePair<string, object?>>? current = _first; 1722if (_first == null) 1726if (_first.Value.Key == key) 1728_first = _first.Next; 1729if (_first is null) 1736DiagNode<KeyValuePair<string, object?>> previous = _first; 1764DiagNode<KeyValuePair<string, object?>>? current = _first; 1777if (_first == null) 1790public DiagEnumerator<KeyValuePair<string, object?>> GetEnumerator() => new DiagEnumerator<KeyValuePair<string, object?>>(_first); 1796DiagNode<KeyValuePair<string, object?>>? current = _first; 1813if (_first == null) 1819_stringBuilder.Append(_first.Value.Key); 1821_stringBuilder.Append(_first.Value.Value); 1823DiagNode<KeyValuePair<string, object?>>? current = _first.Next;