We use the .NET API to upload files using UploadAsync
I recently got an error: System.AggregateException: One or more errors occurred. ---> Dropbox.Api.RateLimitException: too_many_requests/.
So, I need to ratelimit, fine, I'm OK with that. Elsewhere there's talk about a Retry-After header that tell you how long to wait before retrying. But how do I get at that from C# ??? So far, I can only guess how long to wait, and that's just silly.
There ought to be a way to get at that value, right ?