我们在.Net 4.6.1库中使用SDK WindowsAzure.ServiceBus。该库在azure webapp中使用。 Webapp创建一个TopicClient,并使用此TopicClient将BrokeredMessage发送到ServiceBus。
var topicClient = TopicClient.CreateFromConnectionString(serviceBusConnectionString, topicName);
topicClient.Send(message); // brokered message
如何专门设置对Https的传输?