Share via


AzureServiceBusExtensions Class

Definition

Provides extension methods for adding the Azure Service Bus resources to the application model.

public static class AzureServiceBusExtensions
type AzureServiceBusExtensions = class
Public Module AzureServiceBusExtensions
Inheritance
AzureServiceBusExtensions

Methods

AddAzureServiceBus(IDistributedApplicationBuilder, String)

Adds an Azure Service Bus Namespace resource to the application model. This resource can be used to create queue, topic, and subscription resources.

AddAzureServiceBus(IDistributedApplicationBuilder, String, Action<IResourceBuilder<AzureServiceBusResource>, ResourceModuleConstruct,ServiceBusNamespace>)

Adds an Azure Service Bus Namespace resource to the application model. This resource can be used to create queue, topic, and subscription resources.

AddQueue(IResourceBuilder<AzureServiceBusResource>, String)

Adds an Azure Service Bus Queue resource to the application model. This resource requires an AzureServiceBusResource to be added to the application model.

AddQueue(IResourceBuilder<AzureServiceBusResource>, String, Action<IResourceBuilder<AzureServiceBusResource>, ResourceModuleConstruct,ServiceBusQueue>)

Adds an Azure Service Bus Queue resource to the application model. This resource requires an AzureServiceBusResource to be added to the application model.

AddSubscription(IResourceBuilder<AzureServiceBusResource>, String, String)

Adds an Azure Service Bus Topic resource to the application model. This resource requires an AzureServiceBusResource to be added to the application model.

AddSubscription(IResourceBuilder<AzureServiceBusResource>, String, String, Action<IResourceBuilder<AzureServiceBusResource>,ResourceModuleConstruct, ServiceBusSubscription>)

Adds an Azure Service Bus Topic resource to the application model. This resource requires an AzureServiceBusResource to be added to the application model.

AddTopic(IResourceBuilder<AzureServiceBusResource>, String)

Adds an Azure Service Bus Topic resource to the application model. This resource requires an AzureServiceBusResource to be added to the application model.

AddTopic(IResourceBuilder<AzureServiceBusResource>, String, Action<IResourceBuilder<AzureServiceBusResource>, ResourceModuleConstruct,ServiceBusTopic>)

Adds an Azure Service Bus Topic resource to the application model. This resource requires an AzureServiceBusResource to be added to the application model.

AddTopic(IResourceBuilder<AzureServiceBusResource>, String, String[])

Adds an Azure Service Bus Topic resource to the application model. This resource requires an AzureServiceBusResource to be added to the application model.

Applies to