DeviceClient.SendEventBatchAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SendEventBatchAsync(IEnumerable<Message>, CancellationToken) |
Sends a batch of events to IoT hub. Use AMQP or HTTPs for a true batch operation. MQTT will just send the messages one after the other. |
SendEventBatchAsync(IEnumerable<Message>) |
Sends a batch of events to IoT hub. Use AMQP or HTTPs for a true batch operation. MQTT will just send the messages one after the other. |
SendEventBatchAsync(IEnumerable<Message>, CancellationToken)
Sends a batch of events to IoT hub. Use AMQP or HTTPs for a true batch operation. MQTT will just send the messages one after the other.
public System.Threading.Tasks.Task SendEventBatchAsync (System.Collections.Generic.IEnumerable<Microsoft.Azure.Devices.Client.Message> messages, System.Threading.CancellationToken cancellationToken);
member this.SendEventBatchAsync : seq<Microsoft.Azure.Devices.Client.Message> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function SendEventBatchAsync (messages As IEnumerable(Of Message), cancellationToken As CancellationToken) As Task
Parameters
- messages
- IEnumerable<Message>
An IEnumerable<T> set of message objects.
- cancellationToken
- CancellationToken
A cancellation token to cancel the operation.
Returns
The task to await
Exceptions
Thrown when the operation has been canceled.
Thrown when the operation has been canceled. The inner exception will be OperationCanceledException.
Applies to
SendEventBatchAsync(IEnumerable<Message>)
Sends a batch of events to IoT hub. Use AMQP or HTTPs for a true batch operation. MQTT will just send the messages one after the other.
public System.Threading.Tasks.Task SendEventBatchAsync (System.Collections.Generic.IEnumerable<Microsoft.Azure.Devices.Client.Message> messages);
member this.SendEventBatchAsync : seq<Microsoft.Azure.Devices.Client.Message> -> System.Threading.Tasks.Task
Public Function SendEventBatchAsync (messages As IEnumerable(Of Message)) As Task
Parameters
- messages
- IEnumerable<Message>
A list of one or more messages to send. The messages should be disposed after sending.
Returns
The task to await
Applies to
Azure SDK for .NET