Table of Contents

Class StreamWriter

Namespace
CMS.IO
Assembly
CMS.IO.dll

Represents a writer that can write a sequential series of characters.

public class StreamWriter : TextWriter
Inheritance
object
MarshalByRefObject
TextWriter
StreamWriter
Extension Methods

Properties

BaseStream

Gets the underlying stream that interfaces with a backing store.

public Stream BaseStream { get; }

Property Value

Stream

Encoding

Returns current stream writer encoding.

public override Encoding Encoding { get; }

Property Value

Encoding

Methods

Dispose(bool)

Releases all resources.

protected override void Dispose(bool disposing)

Parameters

disposing bool

Disposing

Flush()

Clears all buffers for the current writer and causes any buffered data to be written to the underlying stream.

public override void Flush()

New(Stream)

Returns new instance of stream writer class.

public static StreamWriter New(Stream stream)

Parameters

stream Stream

Stream object

Returns

StreamWriter

New(Stream, Encoding)

Returns new instance of stream writer class.

public static StreamWriter New(Stream stream, Encoding encoding)

Parameters

stream Stream

Stream object

encoding Encoding

Encoding

Returns

StreamWriter

New(StreamWriter)

Returns new instance of stream writer class.

public static StreamWriter New(StreamWriter sw)

Parameters

sw StreamWriter

Stream writer object

Returns

StreamWriter

New(string)

Returns new instance of stream writer class.

public static StreamWriter New(string path)

Parameters

path string

Path to file

Returns

StreamWriter

New(string, bool)

Returns new instance of stream writer class.

public static StreamWriter New(string path, bool append)

Parameters

path string

Path to file

append bool

If should append data to existing file

Returns

StreamWriter

New(string, bool, Encoding)

Returns new instance of stream writer class.

public static StreamWriter New(string path, bool append, Encoding encoding)

Parameters

path string

Path to file

append bool

If should append data to existing file

encoding Encoding

Encoding

Returns

StreamWriter

Write(char)

Writes one character to stream.

public override void Write(char value)

Parameters

value char

Value to write

Write(char[], int, int)

Writes char array to the stream.

public override void Write(char[] buffer, int index, int count)

Parameters

buffer char[]

Buffer with chars

index int

Buffer start index

count int

Number of characters to write

Write(string)

Writes a string to the stream.

public override void Write(string value)

Parameters

value string

String to write

WriteLine(string)

Writes a string followed by a line terminator to the text stream.

public override void WriteLine(string value)

Parameters

value string

Value to write