I'm trying to get very specific with estimating pricing using Azure Service Bus, so I need to know if my solution will be consuming 'Brokered Connections', which can incur cost in the Standard Tier. As I understand it, Brokered Connections are used with HTTP 'long polling'. I'm using using the Microsoft.Azure.ServiceBus NuGet package, and listening for messages using the SubscriptionClient and registering a callback to process messages using the RegisterMessageHandler() method.
What I'm trying to figure out is: is using the SubscriptionClient this way causing Brokered Connections or not? If it is, this has a huge impact on my pricing estimate.
Any help is much appreciated!