Difference between revisions of "Extensions.Flash.GetFlashKey"

From emotive
Jump to navigation Jump to search
m (Hb moved page GetFlashKey to Extensions.Flash.GetFlashKey: #3153)
(No difference)

Revision as of 06:58, 15 February 2016

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.

Icons Note.png 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
GetSessionPriority
GetNumberOfBlocks
IsDownloadSession
GetSessionID