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
T
This aggregate's component object available at Data[dataKey]
.
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Azure SDK for .NET