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

Get a list of Integer, containing the coded values of the NRC-CONST element of the parameter (MCDDbResponseParameter) More...

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

Public Attributes

DbParameterTerm dbParameter
 The element addresses the DbParameter (MCDDbRequestParameter) which negative response code values shall be returned. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Terms.Term
MetaData metaData
 Store additional More...
 

Detailed Description

Get a list of Integer, containing the coded values of the NRC-CONST element of the parameter (MCDDbResponseParameter)

The GetDbParameterNrcConstValues Activity which returns a list of Integer, containing the coded values of the NRC-CONST element of the parameter (MCDDbResponseParameter). In case of a RequestParameter the list is empty.

If the parameter is not of parameter type eNRC_CONST, the InvalidTypeException exception will be thrown.

Note
The appropriate MVCI The appropriate MVCI system operation is MCDDbResponseParameter::getNrcConstValues
Exceptions
Exceptions.InvalidTypeExceptionIf the parameter is not of parameter type eNRC_CONST
Syntax
ListTerm = DiagDataBrowsingPlus.GetDbParameterNrcConstValues(DbParameterTerm dbParameter);
DbParameterTerm dbParameter
The element addresses the DbParameter (MCDDbRequestParameter) which negative response code values sha...
Definition: DiagDataBrowsingPlus.cs:4371
Examples
// Local Declarations
DiagCom.Result Result;
DiagCom.Response Response;
DiagCom.Parameter Parameter;
DiagDataBrowsingPlus.DbParameter DbParameter;
List<Integer> List_Integer;
// Flow
[#MetaData(RequestPdu), <#Data>22 2A 19</#Data>]
DiagCom.ExecuteDiagService(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("LL_GatewUDS", "EV_GatewLear_006", false), "DiagnServi_ReadDataByIdentMeasuValue"), {Param_RecorDataIdent = "stall current measurement value"}, {}, Result, NULL, false, false);
Response = DiagCom.GetFirstResponse(Result);
Parameter = DiagCom.GetParameterByPath(Response, {"Param_RecorDataIdent"});
DbParameter = DiagDataBrowsingPlus.GetParameterDbParameter(Parameter);
List_Integer = DiagDataBrowsingPlus.GetDbParameterNrcConstValues(DbParameter);

Member Data Documentation

◆ dbParameter

DbParameterTerm OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.GetDbParameterNrcConstValues.dbParameter

The element addresses the DbParameter (MCDDbRequestParameter) which negative response code values shall be returned.