Reads the contents of stream from it's current point to the end and returns the result as a string.
public static Task<string> ReadAsStringAsync(this Stream stream)
This overload uses the System.Text.UTF8Encoding to convert the stream contents into a string.
public static Task<string> ReadAsStringAsync(Stream stream, Encoding encoding)