I want to use the ServiceBusConnectionStringBuilder to connecto to the Azure Service Bus.
When I enter the connection string generated on Azure to the constructor with one parameter
public ServiceBusConnectionStringBuilder (string connectionString);
the entitypath is null. When I want to create the connection string with the 4 parameter constructor
public ServiceBusConnectionStringBuilder (string endpoint, string entityPath, string sharedAccessKeyName, string sharedAccessKey);
and I enter into entityPath null or an empty string an exception is thrown. The Visual Studio Debugger shows that the values of the both connection string builders are the same.
What should I enter in the entityPath so that the builder is properly executed?
I have no idea since the documentation on this object is missing. Here a link to the documentation page SerbiceBusConnectionStringBuilder Documentation