I have some file to upload and some of the files failed because the post is asynchronous and not synchronous..
I\'m trying to make this call as synchronized call..
change
await content.ReadAsStringAsync().ConfigureAwait(false)
to
content.ReadAsStringAsync().Result
the ReadAsStringAsync returns a Task object. the '.Result' in the end of the line tell the compiler to return the inner string.