4 writes to _first
System.Diagnostics.DiagnosticSource (4)
System\Diagnostics\Activity.cs (4)
1661
public BaggageLinkedList(KeyValuePair<string, string?> firstValue, bool set = false) =>
_first
= ((set && firstValue.Value == null) ? null : new DiagNode<KeyValuePair<string, string?>>(firstValue));
1672
_first
= newNode;
1700
_first
= newNode;
1715
_first
= _first.Next;
9 references to _first
System.Diagnostics.DiagnosticSource (9)
System\Diagnostics\Activity.cs (9)
1663
public DiagNode<KeyValuePair<string, string?>>? First =>
_first
;
1671
newNode.Next =
_first
;
1686
DiagNode<KeyValuePair<string, string?>>? current =
_first
;
1699
newNode.Next =
_first
;
1708
if (
_first
== null)
1713
if (
_first
.Value.Key == key)
1715
_first =
_first
.Next;
1719
DiagNode<KeyValuePair<string, string?>> previous =
_first
;
1733
public DiagEnumerator<KeyValuePair<string, string?>> GetEnumerator() => new DiagEnumerator<KeyValuePair<string, string?>>(
_first
);