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

Returns 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
 This element represents the DbRequest for which associated DbParameters shall be returned. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Terms.Term
MetaData metaData
 Store additional More...
 

Detailed Description

Returns 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 The appropriate MVCI system operation is MCDDbRequest::getDbRequestParameters
Syntax
ListTerm = DiagDataBrowsingPlus.GetDbRequestDbParameters(DbRequestTerm dbRequest);
DbRequestTerm dbRequest
This element represents the DbRequest for which associated DbParameters shall be returned.
Definition: DiagDataBrowsingPlus.cs:3835
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

This element represents the DbRequest for which associated DbParameters shall be returned.