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

CreateText() public method

Returns a StreamWriter that can be used to write data to S3. The content is persisted to S3 once the StreamWriter is closed.
public CreateText ( ) : StreamWriter
return System.IO.StreamWriter
        public StreamWriter CreateText()
        {
            return new StreamWriter(Create());
        }