NamespaceManager.CreateTopicAsync Method

Definition

Overloads

CreateTopicAsync(TopicDescription)

Asynchronously creates a new topic inside the service namespace with the specified topic description.

CreateTopicAsync(String)

Asynchronously creates a new topic inside the service namespace with the given service namespace path.

CreateTopicAsync(TopicDescription)

Asynchronously creates a new topic inside the service namespace with the specified topic description.

public System.Threading.Tasks.Task<Microsoft.ServiceBus.Messaging.TopicDescription> CreateTopicAsync (Microsoft.ServiceBus.Messaging.TopicDescription description);
member this.CreateTopicAsync : Microsoft.ServiceBus.Messaging.TopicDescription -> System.Threading.Tasks.Task<Microsoft.ServiceBus.Messaging.TopicDescription>
Public Function CreateTopicAsync (description As TopicDescription) As Task(Of TopicDescription)

Parameters

description
TopicDescription

A TopicDescription object describing the attributes with which the new topic will be created.

Returns

The asynchronous operation.

Applies to

CreateTopicAsync(String)

Asynchronously creates a new topic inside the service namespace with the given service namespace path.

public System.Threading.Tasks.Task<Microsoft.ServiceBus.Messaging.TopicDescription> CreateTopicAsync (string path);
member this.CreateTopicAsync : string -> System.Threading.Tasks.Task<Microsoft.ServiceBus.Messaging.TopicDescription>
Public Function CreateTopicAsync (path As String) As Task(Of TopicDescription)

Parameters

path
String

The path of the topic relative to the service namespace base address.

Returns

The asynchronous operation.

Applies to