6 writes to _first
System.Diagnostics.DiagnosticSource (6)
System\Diagnostics\Activity.cs (6)
1745
public TagsLinkedList(KeyValuePair<string, object?> firstValue, bool set = false) => _last =
_first
= ((set && firstValue.Value == null) ? null : new DiagNode<KeyValuePair<string, object?>>(firstValue));
1749
_last =
_first
= new DiagNode<KeyValuePair<string, object?>>(e.Current);
1773
_last =
_first
= new DiagNode<KeyValuePair<string, object?>>(e.Current);
1796
_first
= _last = newNode;
1834
_first
= _first.Next;
1885
_first
= _last = newNode;
17 references to _first
System.Diagnostics.DiagnosticSource (17)
System\Diagnostics\Activity.cs (17)
1758
public DiagNode<KeyValuePair<string, object?>>? First =>
_first
;
1771
if (
_first
== null)
1794
if (
_first
== null)
1810
DiagNode<KeyValuePair<string, object?>>? current =
_first
;
1828
if (
_first
== null)
1832
if (
_first
.Value.Key == key)
1834
_first =
_first
.Next;
1835
if (
_first
is null)
1842
DiagNode<KeyValuePair<string, object?>> previous =
_first
;
1870
DiagNode<KeyValuePair<string, object?>>? current =
_first
;
1883
if (
_first
== null)
1896
public DiagEnumerator<KeyValuePair<string, object?>> GetEnumerator() => new DiagEnumerator<KeyValuePair<string, object?>>(
_first
);
1902
DiagNode<KeyValuePair<string, object?>>? current =
_first
;
1919
if (
_first
== null)
1925
_stringBuilder.Append(
_first
.Value.Key);
1927
_stringBuilder.Append(
_first
.Value.Value);
1929
DiagNode<KeyValuePair<string, object?>>? current =
_first
.Next;