4 writes to _first
System.Diagnostics.DiagnosticSource (4)
System\Diagnostics\Activity.cs (4)
1555
public BaggageLinkedList(KeyValuePair<string, string?> firstValue, bool set = false) =>
_first
= ((set && firstValue.Value == null) ? null : new DiagNode<KeyValuePair<string, string?>>(firstValue));
1566
_first
= newNode;
1594
_first
= newNode;
1609
_first
= _first.Next;
9 references to _first
System.Diagnostics.DiagnosticSource (9)
System\Diagnostics\Activity.cs (9)
1557
public DiagNode<KeyValuePair<string, string?>>? First =>
_first
;
1565
newNode.Next =
_first
;
1580
DiagNode<KeyValuePair<string, string?>>? current =
_first
;
1593
newNode.Next =
_first
;
1602
if (
_first
== null)
1607
if (
_first
.Value.Key == key)
1609
_first =
_first
.Next;
1613
DiagNode<KeyValuePair<string, string?>> previous =
_first
;
1627
public DiagEnumerator<KeyValuePair<string, string?>> GetEnumerator() => new DiagEnumerator<KeyValuePair<string, string?>>(
_first
);