All C# extension methods for type stream
-
ConvertToByteArray
Convert a Stream to an array of bytes.
-
ReadToEnd
Returns a string with the content of the input stream
-
CopyTo
Copies a stream to another stream using a passed buffer. it also has an overload to pass a buffer length.
-
Tail
Set the stream position to the place where for example 10 lines will be returned when read to end.
-
WriteTo
Writes the entire contents of this stream to another stream using a buffer.