MetricAggregate.GetDataValue<T>(String, T) Method

Definition

This is a convenience method to retrieve the object at Data[dataKey]. It attempts to convert that object to the specified type T. If the conversion fails, the specified defaultValue is returned.

public T GetDataValue<T> (string dataKey, T defaultValue);
member this.GetDataValue : string * 'T -> 'T
Public Function GetDataValue(Of T) (dataKey As String, defaultValue As T) As T

Type Parameters

T

Type to which to convert the object at Data[dataKey].

Parameters

dataKey
String

Key for the data item.

defaultValue
T

The value to return if conversion fails.

Returns

T

This aggregate's component object available at Data[dataKey].

Applies to