6 writes to _first
System.Diagnostics.DiagnosticSource (6)
System\Diagnostics\Activity.cs (6)
1691
public TagsLinkedList(KeyValuePair<string, object?> firstValue, bool set = false) => _last =
_first
= ((set && firstValue.Value == null) ? null : new DiagNode<KeyValuePair<string, object?>>(firstValue));
1695
_last =
_first
= new DiagNode<KeyValuePair<string, object?>>(e.Current);
1719
_last =
_first
= new DiagNode<KeyValuePair<string, object?>>(e.Current);
1742
_first
= _last = newNode;
1780
_first
= _first.Next;
1831
_first
= _last = newNode;
17 references to _first
System.Diagnostics.DiagnosticSource (17)
System\Diagnostics\Activity.cs (17)
1704
public DiagNode<KeyValuePair<string, object?>>? First =>
_first
;
1717
if (
_first
== null)
1740
if (
_first
== null)
1756
DiagNode<KeyValuePair<string, object?>>? current =
_first
;
1774
if (
_first
== null)
1778
if (
_first
.Value.Key == key)
1780
_first =
_first
.Next;
1781
if (
_first
is null)
1788
DiagNode<KeyValuePair<string, object?>> previous =
_first
;
1816
DiagNode<KeyValuePair<string, object?>>? current =
_first
;
1829
if (
_first
== null)
1842
public DiagEnumerator<KeyValuePair<string, object?>> GetEnumerator() => new DiagEnumerator<KeyValuePair<string, object?>>(
_first
);
1848
DiagNode<KeyValuePair<string, object?>>? current =
_first
;
1865
if (
_first
== null)
1871
_stringBuilder.Append(
_first
.Value.Key);
1873
_stringBuilder.Append(
_first
.Value.Value);
1875
DiagNode<KeyValuePair<string, object?>>? current =
_first
.Next;