<PackageReference Include="Microsoft.Bcl.Async" Version="1.0.165" />
API Differences between 1.0.165 and 1.0.14-rc
26 Additions
0 Removals
-
public static class AsyncExtensions
- public static Task CopyToAsync(this Stream source, Stream destination)
- public static Task CopyToAsync(this Stream source, Stream destination, int bufferSize)
- public static Task CopyToAsync(this Stream source, Stream destination, int bufferSize, CancellationToken cancellationToken)
- public static Task FlushAsync(this Stream source)
- public static Task FlushAsync(this Stream source, CancellationToken cancellationToken)
- public static Task FlushAsync(this TextWriter target)
- public static Task<Stream> GetRequestStreamAsync(this WebRequest source)
- public static Task<WebResponse> GetResponseAsync(this WebRequest source)
- public static Task<int> ReadAsync(this Stream source, byte[] buffer, int offset, int count)
- public static Task<int> ReadAsync(this Stream source, byte[] buffer, int offset, int count, CancellationToken cancellationToken)
- public static Task<int> ReadAsync(this TextReader source, char[] buffer, int index, int count)
- public static Task<int> ReadBlockAsync(this TextReader source, char[] buffer, int index, int count)
- public static Task<string> ReadLineAsync(this TextReader source)
- public static Task<string> ReadToEndAsync(this TextReader source)
- public static Task WriteAsync(this Stream source, byte[] buffer, int offset, int count)
- public static Task WriteAsync(this Stream source, byte[] buffer, int offset, int count, CancellationToken cancellationToken)
- public static Task WriteAsync(this TextWriter target, string value)
- public static Task WriteAsync(this TextWriter target, char value)
- public static Task WriteAsync(this TextWriter target, char[] buffer)
- public static Task WriteAsync(this TextWriter target, char[] buffer, int index, int count)
- public static Task WriteLineAsync(this TextWriter target)
- public static Task WriteLineAsync(this TextWriter target, string value)
- public static Task WriteLineAsync(this TextWriter target, char value)
- public static Task WriteLineAsync(this TextWriter target, char[] buffer)
- public static Task WriteLineAsync(this TextWriter target, char[] buffer, int index, int count)