
C# |
public TaskInputHandle SendTaskInput( Message message )

- message (Message)
- The task input object to be sent to SOAM


Delivers the provided task input object to the middleware. This method will block until the client receives acknowledgement from the middleware that the input object has been safely accepted. Upon receiving this acknowledgement, a task ID will be returned through a TaskInputHandle.
IMPORTANT NOTE: This SendTaskInput overload uses Symphony Serialization. That is, it sends your task input to the service as a Platform.Symphony.Soam.Message. If you send your task input using this overload, you must retrieve your task input on the service with the TaskContext.PopulateTaskInput(Platform.Symphony.Soam.Message) method.
By using Symphony Serialization, this overload provides best performance and memory usage for sending task input.
For more details, please refer to the Application Development Guide.