Prior to Isolated Azure Functions, one could create an Output binding queue like so:
[Queue(...)] CloudQueue outputQueue
Then, we could add a new message with the ability to add a Visibility Delay like so:
var cloudQueueMessage = new CloudQueueMessage("some message");
var timespan = new TimeSpan(0, 10, 0);
outputQueue.AddMessage(cloudQueueMessage, initialVisibilityDelay: timespan);
Now that we've migrated these Azure Function to the Isolated mode, how does one add a Visibility Delay to the message?
Here's an example from Microsoft's website
How can we add a Visibility Delay to the message using the Isolated mode
Thank you