Difference between revisions of "Extensions.DiagDataBrowsing.GetRequestParameterList"
Jump to navigation
Jump to search
(Created page with "Category:DiagDataBrowsing == Classification == {{ClassificationActivity | GetRequestParameterList | Return names of all request parameters of diagnostic services | [[Term]...") |
|||
Line 5: | Line 5: | ||
== Pseudo-Code Syntax == | == Pseudo-Code Syntax == | ||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | + | ListTerm = DiagDataBrowsing.GetRequestParameterList(DiagServiceTerm); | |
</syntaxhighlight> | </syntaxhighlight> | ||
Line 19: | Line 19: | ||
|} | |} | ||
− | == Examples == | + | == OTL Examples == |
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | List<String> | + | List<String> List1; |
+ | DiagCom.ComChannel ComChannel1; | ||
+ | DiagCom.DiagService DiagService1; | ||
+ | |||
+ | ComChannel1 = DiagCom.GetComChannel("LL_AccesStartInterUDS", "", false); | ||
+ | DiagService1 = DiagCom.CreateDiagServiceByName(ComChannel1, "DiagnServi_ReadDataByIdentActuaTestStatu"); | ||
+ | List1 = DiagDataBrowsing.GetRequestParameterList(DiagService1); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 08:28, 6 February 2015
Contents
Classification
Name | GetRequestParameterList |
Short Description | Return names of all request parameters of diagnostic services |
Class | Term |
Extension | OTX DiagDataBrowsing extension |
Group | DiagDataBrowsing terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
Pseudo-Code Syntax
ListTerm = DiagDataBrowsing.GetRequestParameterList(DiagServiceTerm);
Description
GetRequestParameterList returns a list of strings containing the names of all request parameters of a particular diagnostic services.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
List | Return names of all request parameters of diagnostic services |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
DiagService | DiagService | Term | - | [1] | The diagnostic service, the request parameters are listed. |
OTL Examples
List<String> List1;
DiagCom.ComChannel ComChannel1;
DiagCom.DiagService DiagService1;
ComChannel1 = DiagCom.GetComChannel("LL_AccesStartInterUDS", "", false);
DiagService1 = DiagCom.CreateDiagServiceByName(ComChannel1, "DiagnServi_ReadDataByIdentActuaTestStatu");
List1 = DiagDataBrowsing.GetRequestParameterList(DiagService1);
See also
GetEcuVariantList
GetComChannelList
GetDiagServiceList
GetResponseParameterList
GetAllowedParameterValueList