I want to access a servicebus queue that I have already created in manage.windowsazure.com.
I am using Microsoft Azure Service Bus version 2.5.4 from NuGet.
I attempted to access the queue as follows:
QueueClient queueClient = QueueClient.CreateFromConnectionString(connectionString);
However, the latest version of CreateFromConnectionString() takes two arguments rather than one.
The documentation indicates that a single argument is sufficient.
I tried using an empty string for the second argument, but that fails.
Any clarification would be appreciated.
Best regards,
Frank