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

Returns 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
 This element represents the DbResponse whose 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 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 The appropriate MVCI system operation is MCDDbResponse::getDbResponseParameters
Syntax
ListTerm = DiagDataBrowsingPlus.GetDbResponseDbParameters(DbResponseTerm dbResponse);
DbResponseTerm dbResponse
This element represents the DbResponse whose associated DbParameters shall be returned.
Definition: DiagDataBrowsingPlus.cs:3906
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

This element represents the DbResponse whose associated DbParameters shall be returned.