Kuba Ciechowski
Kuba's space

Kuba's space

Follow
Follow
home
Tag

async

#async

More content

Read more stories on Hashnode


Articles with this tag

Http call using F# and HttpClient

Oct 24, 20211 min read

It took me a few tries to finally call an HTTP endpoint using F#.I've ended up with this code: let result = async { let client = new...

Http call using F# and HttpClient

Await tasks with multiple result types

Jul 25, 20212 min read

Regularly I want to await a few tasks and get their result. Surprisingly, there is no obvious way to do that. Task.WhenAll can be helpful, as we see...

Await tasks with multiple result types