| author | mattchenderson |
|---|---|
| ms.service | azure-functions |
| ms.topic | include |
| ms.date | 07/10/2023 |
| ms.author | mahender |
The queue trigger can bind to the following types:
| Type | Description |
|---|---|
string |
The message content as a string. Use when the message is simple text.. |
byte[] |
The bytes of the message. |
| JSON serializable types | When a queue message contains JSON data, Functions tries to deserialize the JSON data into a plain-old CLR object (POCO) type. |
| QueueMessage1 | The message. |
| BinaryData1 | The bytes of the message. |
1 To use these types, you need to reference Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues 5.2.0 or later and the common dependencies for SDK type bindings.