MeterListener.SetMeasurementEventCallback<T> Method

Definition

Sets a callback for a specific numeric type to get the measurement recording notification from all instruments which enabled listening and was created with the same specified numeric type. If a measurement of type T is recorded and a callback of type T is registered, that callback will be used.

public:
generic <typename T>
 where T : value class void SetMeasurementEventCallback(System::Diagnostics::Metrics::MeasurementCallback<T> ^ measurementCallback);
public void SetMeasurementEventCallback<T> (System.Diagnostics.Metrics.MeasurementCallback<T>? measurementCallback) where T : struct;
member this.SetMeasurementEventCallback : System.Diagnostics.Metrics.MeasurementCallback<'T (requires 'T : struct)> -> unit (requires 'T : struct)
Public Sub SetMeasurementEventCallback(Of T As Structure) (measurementCallback As MeasurementCallback(Of T))

Type Parameters

T

The type of the numeric measurement.

Parameters

measurementCallback
MeasurementCallback<T>

The callback which can be used to get measurement recording of numeric type T.

Applies to