Azure 服务总线,如何以先进先出的顺序接收会话? (先进先出)

Azure Service Bus, How to receive sessions in first in, first out order? (FIFO)

我目前正在使用 C# 中的 Azure 服务总线。我遇到的问题是消息没有按顺序阅读(先进先出)。我一直在尝试使用会话来更正消息的读取顺序。有没有办法确保会话和会话中的消息以先进先出的顺序读取?

单个给定会话中的消息保证以保留的顺序接收。 Documentation:

Sessions provide concurrent de-multiplexing of interleaved message streams while preserving and guaranteeing ordered delivery.

虽然不能保证跨会话。