I'm trying to understand and use the API for dotnet. I'm finding it hard to use the online documentation and I'm wondering if there's something I'm missing.
For instance, I'm using Files.DownloadAsync. I found a page with a few simple examples, but now I want to see how what it returns. The example uses var response = await dbx.File.DownloadAsync(path), which doens't tell me what the response type is. The example would be better if it was possible to explicitly show the types. But now how do I find more info on DownloadAsync and what it returns?
I can find the help but the navigation on the left side doens't work. When I try to open a category, like Drop API it doens't always show anything. If I start from the root I can navigate down to Dropbox.API.Files, which I think woudl be the right place, but I don't see an DownloadAsync listed.
I can use C# to help me understand the type that is returend, which I discover is IDownloadResponse, but how to find that in the help? There is also not a way to search the help.
What is the best why to search and find things in the dotnet help?
Thanks, Paul