Click or drag to resize

IKpiRecorderRecordAsync Method (IEnumerableString, IEnumerableObject)

Record a collection of KPI values.

Namespace:  Demo3D.TestRunner.KpiRecorders
Assembly:  Demo3D.Core (in Demo3D.Core.dll) Version: 18.03.00
Syntax
C#
Task RecordAsync(
	IEnumerable<string> kpiNames,
	IEnumerable<Object?> values
)

Parameters

kpiNames
Type: System.Collections.GenericIEnumerableString
The name of the KPI
values
Type: System.Collections.GenericIEnumerableObject
The value of the KPI

Return Value

Type: Task

[Missing <returns> documentation for "M:Demo3D.TestRunner.KpiRecorders.IKpiRecorder.RecordAsync(System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IEnumerable{System.Object})"]

Remarks
The kpiNames are mapped to the values in order so the first string in kpiNames will be mapped against the first object in values.
See Also