Just a questions about Azure service bus topic subscriptions, is it possible to assign multiple properties to a single subscription?
Also is it possible to enable null values to one of the properties?
What I'm trying to do is to be able to use a azure function to somehow filter the messages on a identifier depending on if it exists or not.
I haven't been able to do this only by queue messages because i cant find a way to insert som type of metadata.
Another solution to my problem would be a separate Service bus Topic subscription where its property can accept being set and shift between to two different values, by which i then can filter.
The reason i want to do this is not to duplicate a whole sequence of actions, only to insert some kind of filtering functionality inside the action after the Service bus topic so to speak.
--------------------UPDATE-------------------
Ok So a bit of update, i've made some progress in this matter. Another question related to this matter is:
When I have sent a Brokered message to a servicebus topic subscription with a property as for example:
message.Properties['id'] = "1";
Is it possible to access that messages propertie value some how? I know it's probably not ment to be used this way but this would open a new door for me.