OTX Reference  
OpenTestSystem.Otx.Extensions.DiagCom.Actions.StopRepeatedExecution Class Reference

Stops the cyclical sending More...

Inheritance diagram for OpenTestSystem.Otx.Extensions.DiagCom.Actions.StopRepeatedExecution:
Inheritance graph

Public Attributes

DiagServiceValue diagService
 Diagnostic service reference handle. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Actions.ActionRealisation
OtxLink validFor
 Validity of ActionRealisation. More...
 

Detailed Description

Stops the cyclical sending

The StopRepeatedExecution activity stops the execution of a cyclic diagnostic service.

Exceptions
Exceptions.InvalidStateExceptionThe diag service is currently not being executed repeatedly.
Syntax
DiagCom.StopRepeatedExecution(DiagServiceValue diagService);
DiagServiceValue diagService
Diagnostic service reference handle.
Definition: DiagCom.cs:1103
Examples
// Local Declarations
DiagCom.DiagService DiagService1;
List<DiagCom.Result> List1;
DiagCom.ComChannel ComChannel1;
// Flow
ComChannel1 = DiagCom.GetComChannel("LL_GatewUDS", "EV_GatewLear_006", false);
DiagService1 = DiagCom.CreateDiagServiceByName(ComChannel1, "DiagnServi_DiagnSessiContr");
DiagCom.StartRepeatedExecution(DiagService1);
EventHandling.Sleep(50);
DiagCom.StopRepeatedExecution(DiagService1);
List1 = DiagCom.GetAllResults(DiagService1);

Member Data Documentation

◆ diagService

DiagServiceValue OpenTestSystem.Otx.Extensions.DiagCom.Actions.StopRepeatedExecution.diagService

Diagnostic service reference handle.