Difference between revisions of "Extensions.Flash.GetFlashKey"
Jump to navigation
Jump to search
m (Hb moved page GetFlashKey to Extensions.Flash.GetFlashKey: #3153) |
|||
Line 1: | Line 1: | ||
− | [[Category:Flash]] | + | {{DISPLAYTITLE: '''GetFlashKey'''}}[[Category:Flash]] |
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetFlashKey | Return the key of a flash session | [[Term]] | [[Flash|OTX Flash extension]] | [[Flash session related terms]] | - | - }} | + | {{ClassificationActivity | GetFlashKey | Return the key of a flash session | [[Term]] | [[Extensions.Flash|OTX Flash extension]] | [[Flash session related terms]] | - | - }} |
== OTL Syntax == | == OTL Syntax == | ||
Line 11: | Line 11: | ||
The '''GetFlashKey''' term return the key of a flash session. The key is a string value. | The '''GetFlashKey''' term return the key of a flash session. The key is a string value. | ||
− | {{TermReturnValue| [[String]] | The key of a flash session.}} | + | {{TermReturnValue| [[Core.DataTypes.SimpleDataType.String|String]] | The key of a flash session.}} |
== Properties == | == Properties == | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| Session | [[FlashSession]] | [[Term]] | - | [1] | This element represent the FlashSession to be used.}} | + | {{TableRowPropertie1| Session | [[Extensions.Flash.FlashSession|FlashSession]] | [[Term]] | - | [1] | This element represent the FlashSession to be used.}} |
|} | |} | ||
Line 33: | Line 33: | ||
== See also == | == See also == | ||
− | [[GetListOfValidFlashSessions]] <br/> | + | [[Extensions.Flash.GetListOfValidFlashSessions|GetListOfValidFlashSessions]] <br/> |
− | [[GetFlashSession]] <br/> | + | [[Extensions.Flash.GetFlashSession|GetFlashSession]] <br/> |
− | [[ | + | [[Extensions.Flash.GetSessionID|GetSessionID]] <br/> |
− | [[ | + | [[Extensions.Flash.GetSessionPriority|GetSessionPriority]] <br/> |
− | [[ | + | [[Extensions.Flash.GetNumberOfBlocks|GetNumberOfBlocks]] <br/> |
− | [[ | + | [[Extensions.Flash.IsDownloadSession|IsDownloadSession]] |
Revision as of 07:37, 15 February 2016
Contents
Classification
Name | GetFlashKey |
Short Description | Return the key of a flash session |
Class | Term |
Extension | OTX Flash extension |
Group | Flash session related terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
StringTerm = Flash.GetFlashKey(FlashSessionTerm);
Description
The GetFlashKey term return the key of a flash session. The key is a string value.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
String | The key of a flash session. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
Session | FlashSession | Term | - | [1] | This element represent the FlashSession to be used. |
OTL Examples
DiagCom.ComChannel ComChannel1;
List<String> List1;
Flash.FlashSession FlashSession1;
String String1;
ComChannel1 = DiagCom.GetComChannel("DiagnosticsCan_ECU_1", null, false);
List1 = Flash.GetListOfValidFlashSessions(@Directions:DOWNLOAD, ComChannel1, @Audiences:SUPPLIER);
FlashSession1 = Flash.GetFlashSession(List1[0]);
String1 = Flash.GetFlashKey(FlashSession1);
See also
GetListOfValidFlashSessions
GetFlashSession
GetSessionID
GetSessionPriority
GetNumberOfBlocks
IsDownloadSession