C# 클래스 NStub.Core.Util.Dumper.XhtmlWriter

StringWriter with an event that is fired on text changes.
Fake output writer. does not really write xhtml .... to be done ... later
상속: System.IO.StringWriter
파일 보기 프로젝트 열기: Jedzia/NStub 1 사용 예제들

공개 메소드들

메소드 설명
Close ( ) : void

Closes the current System.IO.StringWriter and the underlying stream.

Flush ( ) : void

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

Write ( char value ) : void

Writes a character to this instance of the StringWriter.

Write ( char buffer, int index, int count ) : void

Writes the specified region of a character array to this instance of the StringWriter.

Write ( string value ) : void

Writes a string to this instance of the StringWriter.

보호된 메소드들

메소드 설명
OnTextChanged ( TextWrittenEventArgs e ) : void

Raises the E: event.

RaiseTextChanged ( string text ) : void

Raises the text changed event.

비공개 메소드들

메소드 설명
FlushForNewLine ( ) : void

메소드 상세

Close() 공개 메소드

Closes the current System.IO.StringWriter and the underlying stream.
public Close ( ) : void
리턴 void

Flush() 공개 메소드

Clears all buffers for the current writer and causes any buffered data to be written to the underlying device.
public Flush ( ) : void
리턴 void

OnTextChanged() 보호된 메소드

Raises the E: event.
protected OnTextChanged ( TextWrittenEventArgs e ) : void
e TextWrittenEventArgs The instance containing the event data.
리턴 void

RaiseTextChanged() 보호된 메소드

Raises the text changed event.
protected RaiseTextChanged ( string text ) : void
text string The text of the event arguments.
리턴 void

Write() 공개 메소드

Writes a character to this instance of the StringWriter.
/// The writer is closed. ///
public Write ( char value ) : void
value char The character to write.
리턴 void

Write() 공개 메소드

Writes the specified region of a character array to this instance of the StringWriter.
/// is null. /// /// or is negative. /// /// ( + )> . Length. /// /// The writer is closed. ///
public Write ( char buffer, int index, int count ) : void
buffer char The character array to read data from.
index int The index at which to begin reading from .
count int The maximum number of characters to write.
리턴 void

Write() 공개 메소드

Writes a string to this instance of the StringWriter.
/// The writer is closed. ///
public Write ( string value ) : void
value string The string to write.
리턴 void