IKpiRecorderRecordAsync(IEnumerableString, IEnumerableObject) Method |
Record a collection of KPI values.
Namespace: Demo3D.TestRunner.KpiRecordersAssembly: Demo3D.Core (in Demo3D.Core.dll) Version: 19.00.00
SyntaxTask RecordAsync(
IEnumerable<string> kpiNames,
IEnumerable<Object?> values
)
Parameters
- kpiNames IEnumerableString
- The name of the KPI
- values IEnumerableObject
- The value of the KPI
Return Value
Task[Missing <returns> documentation for "M:Demo3D.TestRunner.KpiRecorders.IKpiRecorder.RecordAsync(System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IEnumerable{System.Object})"]
RemarksThe 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