public async Task <Stream> StreamAsync() { using (var client = new VideoClient()) { return(await client .StreamAsync(this) .ConfigureAwait(false)); } }
public async Task <byte[]> GetBytesAsync() { using (var client = new VideoClient()) { return(await client .GetBytesAsync(this) .ConfigureAwait(false)); } }