Am I blind or is
public virtual Task CopyToAsync(
Stream destination,
int bufferSize,
CancellationToken cancellationToken
)
really not available in PCLs? My profile is: .NET 4.5, Windows Store, WP8, Xamarin.iOS and Xamarin.Android.
MSDN claims it is available for .NET 4.5 and Windows Store...it's on Android and on iOS but not in a PCL targeting these?
What's a good cancelable workaround for
await result.Content.CopyToAsync(targetStream);