6 writes to _first
System.Diagnostics.DiagnosticSource (6)
System\Diagnostics\Activity.cs (6)
1640
public TagsLinkedList(KeyValuePair<string, object?> firstValue, bool set = false) => _last =
_first
= ((set && firstValue.Value == null) ? null : new DiagNode<KeyValuePair<string, object?>>(firstValue));
1644
_last =
_first
= new DiagNode<KeyValuePair<string, object?>>(e.Current);
1668
_last =
_first
= new DiagNode<KeyValuePair<string, object?>>(e.Current);
1691
_first
= _last = newNode;
1729
_first
= _first.Next;
1780
_first
= _last = newNode;
17 references to _first
System.Diagnostics.DiagnosticSource (17)
System\Diagnostics\Activity.cs (17)
1653
public DiagNode<KeyValuePair<string, object?>>? First =>
_first
;
1666
if (
_first
== null)
1689
if (
_first
== null)
1705
DiagNode<KeyValuePair<string, object?>>? current =
_first
;
1723
if (
_first
== null)
1727
if (
_first
.Value.Key == key)
1729
_first =
_first
.Next;
1730
if (
_first
is null)
1737
DiagNode<KeyValuePair<string, object?>> previous =
_first
;
1765
DiagNode<KeyValuePair<string, object?>>? current =
_first
;
1778
if (
_first
== null)
1791
public DiagEnumerator<KeyValuePair<string, object?>> GetEnumerator() => new DiagEnumerator<KeyValuePair<string, object?>>(
_first
);
1797
DiagNode<KeyValuePair<string, object?>>? current =
_first
;
1814
if (
_first
== null)
1820
_stringBuilder.Append(
_first
.Value.Key);
1822
_stringBuilder.Append(
_first
.Value.Value);
1824
DiagNode<KeyValuePair<string, object?>>? current =
_first
.Next;