A willow-wash app already references ServiceBusClient, and a teammate points it at a storage-account queue URL. Which client should talk to Azure Queue Storage?
Select an answer to reveal the explanation.
Short Explanation
Wrong SDK, wrong broker. Storage queues want QueueClient (Storage Queue SDK) and a storage connection or managed identity — not ServiceBusClient on a queue URL.
Full Explanation
Azure Queue Storage is accessed with QueueClient (Azure.Storage.Queues / official v12 queue SDK) using a storage connection string or Microsoft Entra identity. ServiceBusClient targets Service Bus, not storage-account queues. Graph and Event Hubs clients are not the Storage Queue API.