GetOptions

Gets the map that contains all of the option entries.

Syntax

Function getOptions() As Map 

Parameters

  • None

Results

Returns the map that contains all of the option entries.

Example

Dim map As New G1CLIENTLib.Map 
Dim requestMsg As New G1CLIENTLib.Message 
Dim sKey As String 
Dim sValue As String 

requestMsg.putOption "OutputCasing", "M" 
requestMsg.putOption "OutputRecordType", "A" 
		
Set map = requestMsg.getOptions 
		
map.Reset 
While (map.Next) 
 sKey = map.getKey 
 sValue = map.getValue 
Wend