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

Gets a list of DbParameter objects which represents the MCDDbRequestParameters for the given DbRequest More...

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

Public Attributes

DbRequestTerm dbRequest
 Cardinality [1]
This element represents the DbRequest for which associated DbParameters shall be returned. 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

Gets a list of DbParameter objects which represents the MCDDbRequestParameters for the given DbRequest

The GetDbRequestDbParameters term returns a list of DbParameter objects which represents the MCDDbRequestParameters for the given DbRequest. An empty list can be returned, if no request parameters are defined for the request in the project's database.

Note: The appropriate MVCI system operation is MCDDbRequest::getDbRequestParameters.

Syntax
ListTerm = DiagDataBrowsingPlus.GetDbRequestDbParameters(DbRequestTerm dbRequest);
Examples
// Local Declarations
DiagCom.ComChannel ComChannel;
DiagCom.DiagService DiagService;
DiagDataBrowsingPlus.DbDiagService DbDiagService;
DiagDataBrowsingPlus.DbRequest DbRequest;
List<DiagDataBrowsingPlus.DbParameter> List_DbParameter;
// Flow
ComChannel = DiagCom.GetComChannel("LL_CentrElectUDS", "EV_BCMCONTI_009", false);
DiagService = DiagCom.CreateDiagServiceByName(ComChannel, "DiagnServi_WriteMemorByAddreMCD20001");
DbDiagService = DiagDataBrowsingPlus.GetDiagServiceDbDiagService(DiagService);
DbRequest = DiagDataBrowsingPlus.GetDbDiagServiceDbRequest(DbDiagService);
List_DbParameter = DiagDataBrowsingPlus.GetDbRequestDbParameters(DbRequest);

Member Data Documentation

◆ dbRequest

DbRequestTerm OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.GetDbRequestDbParameters.dbRequest

Cardinality [1]
This element represents the DbRequest for which associated DbParameters shall be returned.

OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.GetDbRequestDbParameters.dbRequest
DbRequestTerm dbRequest
Cardinality [1] This element represents the DbRequest for which associated DbParameters shall be retu...
Definition: DiagDataBrowsingPlus.cs:3871