Universal.Torrent.Client.TorrentFileStream.ReadAsync C# (CSharp) 메소드

ReadAsync() 공개 메소드

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