Amazon.S3.IO.S3FileInfo.OpenText C# (CSharp) Method

OpenText() public method

Returns a StreamReader for reading the contents of the file.
The file is already open.
public OpenText ( ) : StreamReader
return System.IO.StreamReader
        public StreamReader OpenText()
        {
            return new StreamReader(OpenRead());
        }