ServiceBusClient.CreateSender 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
| CreateSender(String) | Creates a ServiceBusSender instance that can be used for sending messages to a specific queue or topic. | 
| CreateSender(String, ServiceBusSenderOptions) | Creates a ServiceBusSender instance that can be used for sending messages to a specific queue or topic. | 
CreateSender(String)
- Source:
- ServiceBusClient.cs
- Source:
- ServiceBusClient.cs
Creates a ServiceBusSender instance that can be used for sending messages to a specific queue or topic.
public virtual Azure.Messaging.ServiceBus.ServiceBusSender CreateSender(string queueOrTopicName);abstract member CreateSender : string -> Azure.Messaging.ServiceBus.ServiceBusSender
override this.CreateSender : string -> Azure.Messaging.ServiceBus.ServiceBusSenderPublic Overridable Function CreateSender (queueOrTopicName As String) As ServiceBusSenderParameters
- queueOrTopicName
- String
The queue or topic to create a ServiceBusSender for.
Returns
A ServiceBusSender scoped to the specified queue or topic.
Exceptions
The ServiceBusClient was constructed with a connection string containing the "EntityPath" token
that has a different value than the queueOrTopicName value specified here.
Applies to
CreateSender(String, ServiceBusSenderOptions)
- Source:
- ServiceBusClient.cs
- Source:
- ServiceBusClient.cs
Creates a ServiceBusSender instance that can be used for sending messages to a specific queue or topic.
public virtual Azure.Messaging.ServiceBus.ServiceBusSender CreateSender(string queueOrTopicName, Azure.Messaging.ServiceBus.ServiceBusSenderOptions options);abstract member CreateSender : string * Azure.Messaging.ServiceBus.ServiceBusSenderOptions -> Azure.Messaging.ServiceBus.ServiceBusSender
override this.CreateSender : string * Azure.Messaging.ServiceBus.ServiceBusSenderOptions -> Azure.Messaging.ServiceBus.ServiceBusSenderPublic Overridable Function CreateSender (queueOrTopicName As String, options As ServiceBusSenderOptions) As ServiceBusSenderParameters
- queueOrTopicName
- String
The queue or topic to create a ServiceBusSender for.
- options
- ServiceBusSenderOptions
The set of ServiceBusSenderOptions to use when configuring the ServiceBusSender.
Returns
A ServiceBusSender scoped to the specified queue or topic.
Exceptions
The ServiceBusClient was constructed with a connection string containing the "EntityPath" token
that has a different value than the queueOrTopicName value specified here.