Click or drag to resize

CorrigoServiceExecuteMultiple Method

Executes a list of messages that either represents a specialized method or specific business logic. It takes a list of instances of a CommandRequest base class message as an input parameter and returns a list of instances of a CommandResponse base class message. You must cast every CommandResponse instance returned by the ExecuteMultiple method to the specific instance of the response command that corresponds to the appropriate request parameter.

Namespace:  CorrigoService
Assembly:  ClientXMLDoc (in ClientXMLDoc.exe) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public CommandResponse[] ExecuteMultiple(
	CommandRequest[] requests
)

Parameters

requests
Type: CorrigoService.CommandsCommandRequest
Specifies a list of specific CommandRequest instances.

Return Value

Type: CommandResponse
Returns a list of CommandResponse instances. You must cast every CommandResponse instance returned by the ExecuteMultiple method to the specific instance of the response command that corresponds to the appropriate request parameter.
See Also