OTX Reference  
OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.IsDbDiagServiceJob Class Reference

Checks the DbDiagService is a job or not More...

Inheritance diagram for OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.IsDbDiagServiceJob:
Inheritance graph

Public Attributes

DbDiagServiceTerm dbDiagService
 Cardinality [1]
The element addresses the DbDiagService which is checked whether it is a job or not. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Terms.Term
MetaData metaData
 Cardinality [0..1]
The MetaData type allows tools to store additional, mainly tool-specific data. More...
 

Detailed Description

Checks the DbDiagService is a job or not

The IsDbDiagServiceJob activity which returns True if the DbDiagService is a job otherwise False. It returns only True if the method getOjectType returns eMCDMULTIPLEECUJOB, eMCDFLASHJOB or eMCDSINGLEECUJOB.

Note: The appropriate MVCI system operation is MCDDbDiagComPrimitive::getObjectType.

Syntax
BooleanTerm = DiagDataBrowsingPlus.IsDbDiagServiceJob(DbDiagServiceTerm dbDiagService);
Examples
// Local Declarations
DiagCom.ComChannel ComChannel;
DiagCom.DiagService DiagService;
DiagDataBrowsingPlus.DbDiagService DbDiagService;
Boolean MyBoolean = false;
// Flow
ComChannel = DiagCom.GetComChannel("LL_GatewUDS", NULL, false);
DiagService = DiagCom.CreateDiagServiceByName(ComChannel, "DiagnServi_ReadDataByIdentActuaTestStatu");
DbDiagService = DiagDataBrowsingPlus.GetDiagServiceDbDiagService(DiagService);
MyBoolean = DiagDataBrowsingPlus.IsDbDiagServiceJob(DbDiagService);

Member Data Documentation

◆ dbDiagService

DbDiagServiceTerm OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.IsDbDiagServiceJob.dbDiagService

Cardinality [1]
The element addresses the DbDiagService which is checked whether it is a job or not.

OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.IsDbDiagServiceJob.dbDiagService
DbDiagServiceTerm dbDiagService
Cardinality [1] The element addresses the DbDiagService which is checked whether it is a job or not.
Definition: DiagDataBrowsingPlus.cs:9375