OTX Reference  
OpenTestSystem.Otx.Extensions.DiagCom.Terms.GetAllResults Class Reference

List of results of diagnostic services More...

Inheritance diagram for OpenTestSystem.Otx.Extensions.DiagCom.Terms.GetAllResults:
Inheritance graph

Public Attributes

DiagServiceTerm diagService
 Diagnostic service reference handle. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Terms.Term
MetaData metaData
 Store additional More...
 

Detailed Description

List of results of diagnostic services

The GetAllResults activity retrieves all available result entries from a diagnostic service. The results are provided as a list of Result objects.

Syntax
ListTerm DiagCom.GetAllResults(DiagServiceTerm diagService);
DiagServiceTerm diagService
Diagnostic service reference handle.
Definition: DiagCom.cs:2308
Examples
// Local Declarations
DiagCom.ComChannel ComChannel1;
DiagCom.DiagService DiagService1;
List<DiagCom.Result> List1;
// Flow
ComChannel1 = DiagCom.GetComChannel("LL_GatewUDS", "", false);
DiagService1 = DiagCom.CreateDiagServiceByName(ComChannel1, "DiagnServi_ReadDataByIdentActuaTestStatu");
DiagCom.SetRepetitionTime(DiagService1, 5);
DiagCom.StartRepeatedExecution(DiagService1);
EventHandling.Sleep(50);
DiagCom.StopRepeatedExecution(DiagService1);
List1 = DiagCom.GetAllResults(DiagService1);

Member Data Documentation

◆ diagService

DiagServiceTerm OpenTestSystem.Otx.Extensions.DiagCom.Terms.GetAllResults.diagService

Diagnostic service reference handle.