4 writes to _first
System.Diagnostics.DiagnosticSource (4)
System\Diagnostics\Activity.cs (4)
1558
public BaggageLinkedList(KeyValuePair<string, string?> firstValue, bool set = false) =>
_first
= ((set && firstValue.Value == null) ? null : new DiagNode<KeyValuePair<string, string?>>(firstValue));
1569
_first
= newNode;
1597
_first
= newNode;
1612
_first
= _first.Next;
9 references to _first
System.Diagnostics.DiagnosticSource (9)
System\Diagnostics\Activity.cs (9)
1560
public DiagNode<KeyValuePair<string, string?>>? First =>
_first
;
1568
newNode.Next =
_first
;
1583
DiagNode<KeyValuePair<string, string?>>? current =
_first
;
1596
newNode.Next =
_first
;
1605
if (
_first
== null)
1610
if (
_first
.Value.Key == key)
1612
_first =
_first
.Next;
1616
DiagNode<KeyValuePair<string, string?>> previous =
_first
;
1630
public DiagEnumerator<KeyValuePair<string, string?>> GetEnumerator() => new DiagEnumerator<KeyValuePair<string, string?>>(
_first
);