0
紺色のサービスバストピックにメッセージを送信するために小さなPocを作成しました。私のコードは例外なく実行されていますが、紺色のサービスバストピックには表示されません。もし誰かがそれについて何か考えているなら、解決策を提案してください。 紺色のサービスバストピックで接続できません
クラスプログラム
{
const string ServiceBusConnectionString
= "Endpoint=sb://etservicebus.servicebus.windows.net/;SharedAccessKeyName=ServiceBusTopicSubsription;SharedAccessKey=Q4Cc+xP07NN4R0w=";
const string TopicName = "topic1";
static ITopicClient topicClient;
static void Main()
{
MainAsync().GetAwaiter().GetResult();
}
static async Task MainAsync()
{
try
{
topicClient = new TopicClient(ServiceBusConnectionString, TopicName);
// Send messages
string message = "Testing Message";
await topicClient.SendAsync(new Message(Encoding.UTF8.GetBytes(message)));
}
catch (Exception ex)
{
throw;
}
}
}
私は私のコードと紺碧のポータルの詳細のスナップショットを添付しています。
を使用しています。 – lloyd
asyncメソッド呼び出しを待っていないので、エラーが失われる可能性があります。 –
が適用され、現在は以下のエラーになります。 –