I'm using the Event Hub. I have a .NET client where I send EventData instances using the service bus AMQP client. I set a few custom properties on each EventData instance (Properties collection), which are read from the received EventData message Properties collection later in the event processor.
I have to now support incoming data from HTTP clients - how do I format the message so it includes these custom properties?
Do I have to set some sort of custom header in the HTTP request? and if so, what is the name of the header and the format of the header value?