We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84a8234 commit 97c36d6Copy full SHA for 97c36d6
1 file changed
README.md
@@ -8,12 +8,14 @@ Provides `Stream` extensions.
8
9
``` c#
10
byte[] ToBytes(this Stream stream)
11
+Task<byte[]> ToBytesAsync(this Stream stream)
12
```
13
14
Returns the given `stream` as a `byte` array.
15
16
17
Stream Copy(this Stream stream)
18
+Task<Stream> CopyAsync(this Stream stream)
19
20
21
Creates a copyof the given `stream`. THe copy will be at position 0 and the source `stream` will remain at its original position.
0 commit comments