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