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

Gets a list of DbParameter objects which represents the MCDDbResponseParameters for the given DbResponse More...

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

Public Attributes

DbResponseTerm dbResponse
 Cardinality [1]
This element represents the DbResponse whose 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 MCDDbResponseParameters for the given DbResponse

The GetDbResponseDbParameters term returns a list of DbParameter objects which represents the MCDDbResponseParameters for the given DbResponse.An empty list can be returned, if no response parameters are defined for the response in the project's database.

Note: The appropriate MVCI system operation is MCDDbResponse::getDbResponseParameters.

Syntax
ListTerm = DiagDataBrowsingPlus.GetDbResponseDbParameters(DbResponseTerm dbResponse);
Examples
// Local Declarations
DiagCom.Result Result;
DiagCom.Response Response;
DiagDataBrowsingPlus.DbResponse DbResponse;
List<DiagDataBrowsingPlus.DbParameter> List_DbParameter;
// Flow
[#MetaData(RequestPdu), <#Data>22 01 00</#Data>]
DiagCom.ExecuteDiagService(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("LL_GatewUDS", "EV_GatewLear_006", false), "DiagnServi_ReadDataByIdentActuaTestStatu"), {}, {}, Result, NULL, false, false);
Response = DiagCom.GetFirstResponse(Result);
DbResponse = DiagDataBrowsingPlus.GetResponseDbResponse(Response);
List_DbParameter = DiagDataBrowsingPlus.GetDbResponseDbParameters(DbResponse);

Member Data Documentation

◆ dbResponse

DbResponseTerm OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.GetDbResponseDbParameters.dbResponse

Cardinality [1]
This element represents the DbResponse whose associated DbParameters shall be returned.

OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.GetDbResponseDbParameters.dbResponse
DbResponseTerm dbResponse
Cardinality [1] This element represents the DbResponse whose associated DbParameters shall be returne...
Definition: DiagDataBrowsingPlus.cs:3942