NamespaceManager.CreateEventHubIfNotExistsAsync 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
CreateEventHubIfNotExistsAsync(EventHubDescription) |
Asynchronously creates an Event Hub if it does not exist. |
CreateEventHubIfNotExistsAsync(String) |
Asynchronously creates an Event Hub if it does not exist. |
CreateEventHubIfNotExistsAsync(EventHubDescription)
Asynchronously creates an Event Hub if it does not exist.
public System.Threading.Tasks.Task<Microsoft.ServiceBus.Messaging.EventHubDescription> CreateEventHubIfNotExistsAsync (Microsoft.ServiceBus.Messaging.EventHubDescription description);
member this.CreateEventHubIfNotExistsAsync : Microsoft.ServiceBus.Messaging.EventHubDescription -> System.Threading.Tasks.Task<Microsoft.ServiceBus.Messaging.EventHubDescription>
Public Function CreateEventHubIfNotExistsAsync (description As EventHubDescription) As Task(Of EventHubDescription)
Parameters
- description
- EventHubDescription
The event hub description.
Returns
The task that completes the asynchronous operation.
Applies to
CreateEventHubIfNotExistsAsync(String)
Asynchronously creates an Event Hub if it does not exist.
public System.Threading.Tasks.Task<Microsoft.ServiceBus.Messaging.EventHubDescription> CreateEventHubIfNotExistsAsync (string path);
member this.CreateEventHubIfNotExistsAsync : string -> System.Threading.Tasks.Task<Microsoft.ServiceBus.Messaging.EventHubDescription>
Public Function CreateEventHubIfNotExistsAsync (path As String) As Task(Of EventHubDescription)
Parameters
- path
- String
The path of the event hub.
Returns
The task that completes the asynchronous operation.
Applies to
Azure SDK for .NET