4 writes to Value
System.Diagnostics.DiagnosticSource (4)
System\Diagnostics\Activity.cs (3)
1530
public readonly ref T Current => ref _currentNode.
Value
;
1586
current.
Value
= value;
1770
current.
Value
= value;
System\Diagnostics\DiagLinkedList.cs (1)
11
public DiagNode(T value) =>
Value
= value;
32 references to Value
System.Diagnostics.DiagnosticSource (32)
System\Diagnostics\Activity.cs (17)
399
yield return current.
Value
;
1584
if (current.
Value
.Key == value.Key)
1608
if (_first.
Value
.Key == key)
1618
if (previous.Next.
Value
.Key == key)
1708
if (current.
Value
.Key == key)
1710
return current.
Value
.Value;
1727
if (_first.
Value
.Key == key)
1741
if (previous.Next.
Value
.Key == key)
1768
if (current.
Value
.Key == value.Key)
1801
if (current.
Value
.Value is string || current.
Value
.Value == null)
1803
yield return new KeyValuePair<string, string?>(current.
Value
.Key, (string?)current.
Value
.Value);
1820
_stringBuilder.Append(_first.
Value
.Key);
1822
_stringBuilder.Append(_first.
Value
.Value);
1828
_stringBuilder.Append(current.
Value
.Key);
1830
_stringBuilder.Append(current.
Value
.Value);
System\Diagnostics\DiagLinkedList.cs (6)
80
if (compare(value, current.
Value
))
105
if (compare(previous.
Value
, value))
112
return previous.
Value
;
119
if (compare(current.
Value
, value))
127
return current.
Value
;
167
public T Current => _currentNode.
Value
;
System\Diagnostics\Metrics\Instrument.common.cs (2)
99
current.
Value
.Listener.NotifyMeasurement(this, measurement, tags, current.
Value
.State);
System\Diagnostics\Metrics\Instrument.cs (3)
153
current.
Value
.Listener.DisableMeasurementEvents(this);
200
if (object.ReferenceEquals(listener, current.
Value
.Listener))
202
return current.
Value
.State;
System\Diagnostics\Metrics\MeterListener.cs (4)
222
if (current.
Value
.IsObservable)
226
current.
Value
.Observe(this);
276
object? state = current.
Value
.DisableMeasurements(this);
277
callbacksArguments?.Add(current.
Value
, state);