6 writes to _first
System.Diagnostics.DiagnosticSource (6)
System\Diagnostics\Activity.cs (6)
1642public TagsLinkedList(KeyValuePair<string, object?> firstValue, bool set = false) => _last = _first = ((set && firstValue.Value == null) ? null : new DiagNode<KeyValuePair<string, object?>>(firstValue)); 1646_last = _first = new DiagNode<KeyValuePair<string, object?>>(e.Current); 1670_last = _first = new DiagNode<KeyValuePair<string, object?>>(e.Current); 1693_first = _last = newNode; 1731_first = _first.Next; 1782_first = _last = newNode;
17 references to _first
System.Diagnostics.DiagnosticSource (17)
System\Diagnostics\Activity.cs (17)
1655public DiagNode<KeyValuePair<string, object?>>? First => _first; 1668if (_first == null) 1691if (_first == null) 1707DiagNode<KeyValuePair<string, object?>>? current = _first; 1725if (_first == null) 1729if (_first.Value.Key == key) 1731_first = _first.Next; 1732if (_first is null) 1739DiagNode<KeyValuePair<string, object?>> previous = _first; 1767DiagNode<KeyValuePair<string, object?>>? current = _first; 1780if (_first == null) 1793public DiagEnumerator<KeyValuePair<string, object?>> GetEnumerator() => new DiagEnumerator<KeyValuePair<string, object?>>(_first); 1799DiagNode<KeyValuePair<string, object?>>? current = _first; 1816if (_first == null) 1822_stringBuilder.Append(_first.Value.Key); 1824_stringBuilder.Append(_first.Value.Value); 1826DiagNode<KeyValuePair<string, object?>>? current = _first.Next;