4 writes to _first
System.Diagnostics.DiagnosticSource (4)
System\Diagnostics\Activity.cs (4)
1556
public BaggageLinkedList(KeyValuePair<string, string?> firstValue, bool set = false) =>
_first
= ((set && firstValue.Value == null) ? null : new DiagNode<KeyValuePair<string, string?>>(firstValue));
1567
_first
= newNode;
1595
_first
= newNode;
1610
_first
= _first.Next;
9 references to _first
System.Diagnostics.DiagnosticSource (9)
System\Diagnostics\Activity.cs (9)
1558
public DiagNode<KeyValuePair<string, string?>>? First =>
_first
;
1566
newNode.Next =
_first
;
1581
DiagNode<KeyValuePair<string, string?>>? current =
_first
;
1594
newNode.Next =
_first
;
1603
if (
_first
== null)
1608
if (
_first
.Value.Key == key)
1610
_first =
_first
.Next;
1614
DiagNode<KeyValuePair<string, string?>> previous =
_first
;
1628
public DiagEnumerator<KeyValuePair<string, string?>> GetEnumerator() => new DiagEnumerator<KeyValuePair<string, string?>>(
_first
);