laveeshb / azure-function-extensions-net

Extensions for Azure Functions
MIT License
4 stars 7 forks source link

Add support for both attributes and message attributes #53

Open acartcat opened 3 years ago

acartcat commented 3 years ago

I'm using this in a POC for an Azure Function taking telemetry from an SQS queue. It's important to get the Message Attributes and the other attributes. Let me know what you think. I couldn't work out if it was possible to use a List directly as a parameter so reverted to Split() on the string Cheers

laveeshb commented 3 years ago

Thanks for adding this capability @acartcat. Let me check if it is possible to resolve a string to array without us doing it explicitly in the code. Other than that, it looks ok to me. I take it you have tested it locally?