4 writes to _first
System.Diagnostics.DiagnosticSource (4)
System\Diagnostics\Activity.cs (4)
1607
public BaggageLinkedList(KeyValuePair<string, string?> firstValue, bool set = false) =>
_first
= ((set && firstValue.Value == null) ? null : new DiagNode<KeyValuePair<string, string?>>(firstValue));
1618
_first
= newNode;
1646
_first
= newNode;
1661
_first
= _first.Next;
9 references to _first
System.Diagnostics.DiagnosticSource (9)
System\Diagnostics\Activity.cs (9)
1609
public DiagNode<KeyValuePair<string, string?>>? First =>
_first
;
1617
newNode.Next =
_first
;
1632
DiagNode<KeyValuePair<string, string?>>? current =
_first
;
1645
newNode.Next =
_first
;
1654
if (
_first
== null)
1659
if (
_first
.Value.Key == key)
1661
_first =
_first
.Next;
1665
DiagNode<KeyValuePair<string, string?>> previous =
_first
;
1679
public DiagEnumerator<KeyValuePair<string, string?>> GetEnumerator() => new DiagEnumerator<KeyValuePair<string, string?>>(
_first
);