SetOptions

Overwrites the current option properties with the new option properties.

Syntax

ASCII Version
void setOptions(map<string , string> options) 
Unicode Version
void setOptions(map< UnicodeString, UnicodeString > options) 

Parameters

  • The new option map to be used to replace the current option map

Example

ASCII Version
map<string , string> options ; 
//more code 
message->setOptions(options);
Unicode Version
map< UnicodeString, UnicodeString > options ; 
//more code 
message->setOptions(options);