6 writes to _first
System.Diagnostics.DiagnosticSource (6)
System\Diagnostics\Activity.cs (6)
1642
public TagsLinkedList(KeyValuePair<string, object?> firstValue, bool set = false) => _last =
_first
= ((set && firstValue.Value == null) ? null : new DiagNode<KeyValuePair<string, object?>>(firstValue));
1646
_last =
_first
= new DiagNode<KeyValuePair<string, object?>>(e.Current);
1670
_last =
_first
= new DiagNode<KeyValuePair<string, object?>>(e.Current);
1693
_first
= _last = newNode;
1731
_first
= _first.Next;
1782
_first
= _last = newNode;
17 references to _first
System.Diagnostics.DiagnosticSource (17)
System\Diagnostics\Activity.cs (17)
1655
public DiagNode<KeyValuePair<string, object?>>? First =>
_first
;
1668
if (
_first
== null)
1691
if (
_first
== null)
1707
DiagNode<KeyValuePair<string, object?>>? current =
_first
;
1725
if (
_first
== null)
1729
if (
_first
.Value.Key == key)
1731
_first =
_first
.Next;
1732
if (
_first
is null)
1739
DiagNode<KeyValuePair<string, object?>> previous =
_first
;
1767
DiagNode<KeyValuePair<string, object?>>? current =
_first
;
1780
if (
_first
== null)
1793
public DiagEnumerator<KeyValuePair<string, object?>> GetEnumerator() => new DiagEnumerator<KeyValuePair<string, object?>>(
_first
);
1799
DiagNode<KeyValuePair<string, object?>>? current =
_first
;
1816
if (
_first
== null)
1822
_stringBuilder.Append(
_first
.Value.Key);
1824
_stringBuilder.Append(
_first
.Value.Value);
1826
DiagNode<KeyValuePair<string, object?>>? current =
_first
.Next;