saguiitay / DropboxRestAPI

Dropbox REST API client in C#
MIT License
46 stars 38 forks source link

Dead Locks, wehn calling from asp.net website. #1

Closed B0R1K closed 9 years ago

B0R1K commented 9 years ago

It seems to help when i add ConfigureAwait(false) return await client.SendAsync(requestMessage, HttpCompletionOption.ResponseHeadersRead) to class HttpClientExtensions

Just wanted to point it out, could be issue on my site as well...

Thank you, so far really like the api

Boris

saguiitay commented 9 years ago

Adding ConfigureAwait(false) to all awaits me calls makes sense. Feel free to send me a PullRequest, or I'll implement it as soon as I can.

saguiitay commented 9 years ago

Resolved with commit 69dc9e6123dbf98417957844cf2bae1bc3463b76

B0R1K commented 9 years ago

Thank you