TopicClient.SendAsync Method

Definition

Overloads

SendAsync(Message)

Sends a message to Service Bus.

SendAsync(IList<Message>)

Sends a list of messages to Service Bus. When called on partitioned entities, messages meant for different partitions cannot be batched together.

SendAsync(Message)

Source:
TopicClient.cs

Sends a message to Service Bus.

public System.Threading.Tasks.Task SendAsync (Microsoft.Azure.ServiceBus.Message message);
abstract member SendAsync : Microsoft.Azure.ServiceBus.Message -> System.Threading.Tasks.Task
override this.SendAsync : Microsoft.Azure.ServiceBus.Message -> System.Threading.Tasks.Task
Public Function SendAsync (message As Message) As Task

Parameters

message
Message

Returns

Implements

Applies to

SendAsync(IList<Message>)

Source:
TopicClient.cs

Sends a list of messages to Service Bus. When called on partitioned entities, messages meant for different partitions cannot be batched together.

public System.Threading.Tasks.Task SendAsync (System.Collections.Generic.IList<Microsoft.Azure.ServiceBus.Message> messageList);
abstract member SendAsync : System.Collections.Generic.IList<Microsoft.Azure.ServiceBus.Message> -> System.Threading.Tasks.Task
override this.SendAsync : System.Collections.Generic.IList<Microsoft.Azure.ServiceBus.Message> -> System.Threading.Tasks.Task
Public Function SendAsync (messageList As IList(Of Message)) As Task

Parameters

messageList
IList<Message>

Returns

Implements

Applies to