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

Get all table entries of the parameter, as a List of DbTextTableElements More...

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

Public Attributes

DbParameterTerm dbParameter
 The element addresses the DbParameter (MCDDbParameter) which text table elements shall be returned. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Terms.Term
MetaData metaData
 Store additional More...
 

Detailed Description

Get all table entries of the parameter, as a List of DbTextTableElements

The GetDbParameterTextTableElements Activity which returns all table entries of the parameter, as a List of DbTextTableElements.

If the parameter is not a text table, the InvalidTypeException exception will be thrown.

Note
The appropriate MVCI The appropriate MVCI system operation is MCDDbParameter::getTextTableElements
Exceptions
Exceptions.InvalidTypeExceptionIf the parameter is not a text table.
Syntax
ListTerm = DiagDataBrowsingPlus.GetDbParameterTextTableElements(DbParameterTerm dbParameter);
DbParameterTerm dbParameter
The element addresses the DbParameter (MCDDbParameter) which text table elements shall be returned.
Definition: DiagDataBrowsingPlus.cs:4836
Examples
// Local Declarations
DiagCom.Parameter Parameter;
DiagDataBrowsingPlus.DbParameter DbParameter;
List<DiagDataBrowsingPlus.TextTableElement> List_TextTableElement;
// Flow
Parameter = DiagCom.GetParameterByPath(DiagCom.GetRequest(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("LL_GatewUDS", "", false), "DiagnServi_ReadDataByIdentECUIdent")), {"Param_RecorDataIdent"});
DbParameter = DiagDataBrowsingPlus.GetParameterDbParameter(Parameter);
List_TextTableElement = DiagDataBrowsingPlus.GetDbParameterTextTableElements(DbParameter);

Member Data Documentation

◆ dbParameter

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

The element addresses the DbParameter (MCDDbParameter) which text table elements shall be returned.