Robert
Task.Run() in .net framework
Hi, I'm maintaining an older legacy .net Framework application in which I have a void start() method (that must be void, however now this is intertwined with async await)
as far as i understand async () => await is slower but i don't quite grasp the difference.
4 replies
Adding middleware
Hi!
I face an issue whilst using the azure serverless signalr with azure function as bindings. When Signalr is running using websockets the authorization header is null and i must use the query to retrieve the token. How can I register it in my function? this is my Program.cs
essentially i'd somehow need to register this, but make it work for the function
2 replies
Signalr
Hi!
For work I have to connect the middleware with the backend in a fast way so I ended up deciding to use signalr.
I have a serverless signalr instance running in azure and an azure function for the bindings
I am start with a small poc to fully understand how it's working
The azure function is uploaded as a file as it is too big
5 replies
Skill issue serializing tasks
Hi!
I need to serialize a list of tasks to only begin when the previous task is fully completed, let's take this snippet for example
I've tried using Task.WaitAll, await Task.WhenAll, looping and awaiting them, continue with (with and without await), but the closest i've been to succes is
delay start 1
delay start 2
delay start 3
delay end 3
delay end 2
delay end 1
Thank you!
46 replies