C# Class NStub.Core.Util.Dumper.ObjectDumper

Object low level dumper.
Afficher le fichier Open project: Jedzia/NStub

Private Properties

Свойство Type Description
ObjectDumper System
ObjectDumper System
Write void
WriteIndent void
WriteLine void
WriteObject void
WriteObject void
WriteTab void
WriteValue void

Méthodes publiques

Méthode Description
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.

Private Methods

Méthode Description
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

Method Details

Write() public static méthode

Writes the specified element to the output.
public static Write ( object element ) : void
element object The element.
Résultat void

Write() public static méthode

Writes the specified element.
public static Write ( object element, int depth ) : void
element object The element.
depth int The iteration level.
Résultat void

Write() public static méthode

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.
Résultat void

Write() public static méthode

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.
Résultat void

Write() public static méthode

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.
Résultat void