Power Automate フローを作成しています。 サードパーティ アプリケーションから要求を受信する Azure Service Bus リスナー アプリを作成します。 フローがメッセージ キューを呼び出すときは、メッセージを読み取ったらすぐに削除する必要があります。 キューが適切にクリアされていることを確認する必要があります。 どのメソッドまたはクラスを使用する必要がありますか?
正解:A
Explanation ReceiveMode enumerates the values for the receive mode. The default is PeekLock. Fields: PeekLock: Specifies the PeekLock receive mode. This is the default value for ReceiveMode. ReceiveAndDelete: Specifies the ReceiveAndDelete receive mode. Note: You can specify two different modes in which Service Bus receives messages. Receive and delete. In this mode, when Service Bus receives the request from the consumer, it marks the message as being consumed and returns it to the consumer application. Peek lock. Reference: https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-queues-topics-subscriptions https://docs.microsoft.com/en-us/dotnet/api/microsoft.servicebus.messaging.receivemode