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

Gets 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
 Cardinality [1]
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
 Cardinality [0..1]
The MetaData type allows tools to store additional, mainly tool-specific data. More...
 

Detailed Description

Gets 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 system operation is MCDDbResponseParameter::getNrcConstValues.

Exceptions
Exceptions.InvalidTypeExceptionIf the parameter is not of parameter type eNRC_CONST
Syntax
ListTerm = DiagDataBrowsingPlus.GetDbParameterNrcConstValues(DbParameterTerm dbParameter);
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

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

OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.GetDbParameterNrcConstValues.dbParameter
DbParameterTerm dbParameter
Cardinality [1] The element addresses the DbParameter (MCDDbRequestParameter) which negative response...
Definition: DiagDataBrowsingPlus.cs:4407