I am using dropbox api to download the files and i am using drop box client to download file now i want to show the progress bar to the .How it is possible? I am using following code to download file.
DropboxClient dbx = new DropboxClient(user.DropboxAccessToken,10,null,httpClient);
using (var response = await dbx.Files.DownloadAsync(@"" + "/" + file))
{
var ufile =await response.GetContentAsStreamAsync();
}