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

Object low level dumper.
파일 보기 프로젝트 열기: Jedzia/NStub

Private Properties

프로퍼티 타입 설명
ObjectDumper System
ObjectDumper System
Write void
WriteIndent void
WriteLine void
WriteObject void
WriteObject void
WriteTab void
WriteValue void

공개 메소드들

메소드 설명
Write ( object element ) : void

Writes the specified element to the output.

Write ( object element, int depth ) : void

Writes the specified element.

Write ( object element, int depth, int maxcount ) : void

Writes the specified element.

Write ( object element, int depth, int maxcount, TextWriter log ) : void

Writes the specified element.

Write ( string prefix, object element, int depth, int maxcount, TextWriter log ) : void

Writes the specified element.

비공개 메소드들

메소드 설명
ObjectDumper ( int depth, int maxcount ) : System

Prevents a default instance of the ObjectDumper class from being created.

ObjectDumper ( int depth, int maxcount, TextWriter writer ) : System

Initializes a new instance of the ObjectDumper class.

Write ( string s ) : void
WriteIndent ( ) : void
WriteLine ( ) : void
WriteObject ( object element ) : void
WriteObject ( string prefix, object element ) : void
WriteTab ( ) : void
WriteValue ( object o ) : void

메소드 상세

Write() 공개 정적인 메소드

Writes the specified element to the output.
public static Write ( object element ) : void
element object The element.
리턴 void

Write() 공개 정적인 메소드

Writes the specified element.
public static Write ( object element, int depth ) : void
element object The element.
depth int The iteration level.
리턴 void

Write() 공개 정적인 메소드

Writes the specified element.
public static Write ( object element, int depth, int maxcount ) : void
element object The element.
depth int The iteration level.
maxcount int The maximum count of dumps.
리턴 void

Write() 공개 정적인 메소드

Writes the specified element.
public static Write ( object element, int depth, int maxcount, TextWriter log ) : void
element object The element.
depth int The iteration level.
maxcount int The maximum count of dumps.
log System.IO.TextWriter The output logger.
리턴 void

Write() 공개 정적인 메소드

Writes the specified element.
public static Write ( string prefix, object element, int depth, int maxcount, TextWriter log ) : void
prefix string The prefix to print.
element object The element to dump.
depth int The iteration level.
maxcount int The maximum count of dumps.
log System.IO.TextWriter The output logger.
리턴 void