C# Класс NStub.Core.Util.Dumper.ObjectDumper

Object low level dumper.
Показать файл Открыть проект

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