Universal.Torrent.Client.TorrentFileStream.ReadAsync C# (CSharp) Method

ReadAsync() public method

public ReadAsync ( Windows.Storage.Streams.IBuffer buffer, uint count, InputStreamOptions options ) : uint>.IAsyncOperationWithProgress
buffer Windows.Storage.Streams.IBuffer
count uint
options InputStreamOptions
return uint>.IAsyncOperationWithProgress
        public IAsyncOperationWithProgress<IBuffer, uint> ReadAsync(IBuffer buffer, uint count,
            InputStreamOptions options)
        {
            return _randomAccessStream.ReadAsync(buffer, count, options);
        }
    }