MetricAggregate.GetDataValue<T>(String, T) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
This aggregate's component object available at Data[dataKey]
.
Applies to
Azure SDK for .NET