Getting Started
Architecture
NServiceBus
Transports
Persistence
ServiceInsight
ServicePulse
ServiceControl
Monitoring
Samples

Azure Functions (isolated) for Service Bus Upgrade Version 3 to 4

Code first API to set connection string

Setting the connection string can now be done as part of calling UseNServiceBus()

Instead of

functionsHostBuilder.UseNServiceBus(() => new ServiceBusTriggeredEndpointConfiguration(endpointName){
    ConnectionString = "CONNECTIONSTRING"
});

use:

functionsHostBuilder.UseNServiceBus(endpointName, "CONNECTIONSTRING");

Related Articles