IMessagingManager.SendMessages<T> Method (IEnumerable<T>, Int64, Nullable<Guid>) |
[This is preliminary documentation and is subject to change.]
Sends messages
Namespace: Netadmin.Management.MessagingAssembly: Netadmin.Management.Interfaces (in Netadmin.Management.Interfaces.dll) Version: release/9.0@131b654fe7332b0776120c2b44d96c6cac5ac9a2
Syntaxvoid SendMessages<T>(
IEnumerable<T> messages,
long messageTypeId,
Nullable<Guid> reference = null
)
Sub SendMessages(Of T) (
messages As IEnumerable(Of T),
messageTypeId As Long,
Optional reference As Nullable(Of Guid) = Nothing
)
Parameters
- messages
- Type: System.Collections.Generic.IEnumerable<T>
The messages to send - messageTypeId
- Type: System.Int64
The message type id to send them on - reference (Optional)
- Type: System.Nullable<Guid>
Optional guid for tracking the messages
Type Parameters
- T
- The type of message to send, example ITicketPostMessage
ExceptionsException | Condition |
---|
ArgumentNullException | messages is null |
See Also