How can I cancel Task<> from async methods in Dropbox C# SDK? I don't see how I can set CancellationToken for them.
I thought there is something like:
public Task<Metadata> GetMetadataAsync(
string path,
bool includeMediaInfo = false,
bool includeDeleted = false,
bool includeHasExplicitSharedMembers = false,
CancellationToken ct = null
)
But can't find it. Please help.