6 writes to _first
System.Diagnostics.DiagnosticSource (6)
System\Diagnostics\Activity.cs (6)
1639
public TagsLinkedList(KeyValuePair<string, object?> firstValue, bool set = false) => _last =
_first
= ((set && firstValue.Value == null) ? null : new DiagNode<KeyValuePair<string, object?>>(firstValue));
1643
_last =
_first
= new DiagNode<KeyValuePair<string, object?>>(e.Current);
1667
_last =
_first
= new DiagNode<KeyValuePair<string, object?>>(e.Current);
1690
_first
= _last = newNode;
1728
_first
= _first.Next;
1779
_first
= _last = newNode;
17 references to _first
System.Diagnostics.DiagnosticSource (17)
System\Diagnostics\Activity.cs (17)
1652
public DiagNode<KeyValuePair<string, object?>>? First =>
_first
;
1665
if (
_first
== null)
1688
if (
_first
== null)
1704
DiagNode<KeyValuePair<string, object?>>? current =
_first
;
1722
if (
_first
== null)
1726
if (
_first
.Value.Key == key)
1728
_first =
_first
.Next;
1729
if (
_first
is null)
1736
DiagNode<KeyValuePair<string, object?>> previous =
_first
;
1764
DiagNode<KeyValuePair<string, object?>>? current =
_first
;
1777
if (
_first
== null)
1790
public DiagEnumerator<KeyValuePair<string, object?>> GetEnumerator() => new DiagEnumerator<KeyValuePair<string, object?>>(
_first
);
1796
DiagNode<KeyValuePair<string, object?>>? current =
_first
;
1813
if (
_first
== null)
1819
_stringBuilder.Append(
_first
.Value.Key);
1821
_stringBuilder.Append(
_first
.Value.Value);
1823
DiagNode<KeyValuePair<string, object?>>? current =
_first
.Next;