NamespaceManager.CreateTopicAsync 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
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
Azure SDK for .NET