C# Класс Gammtek.Conduit.Text.Formatting.VerboseFormatInfo

Provides extended formatting serivces that can be applied to all reference and value types. This class merely analyzes object that should be formatted and then delegates formatting to the specific formatter most appropriate for the given type.
Наследование: VerboseFormatInfoBase
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Clone ( ) : object

Creates deep copy of this instance.

VerboseFormatInfo ( ) : System

Default constructor.

VerboseFormatInfo ( Type instanceType, string instanceName ) : System

Constructor which allows caller to set name and type of the instance for which appropriate string is formatted using this object.

VerboseFormatInfo ( VerboseFormatInfo other ) : System

Copy constructor. Used to copy common property values from another formatter of the same type, which results in creating output string which is formatted in the same way.

VerboseFormatInfo ( VerboseFormatInfoBase other ) : System

Copy constructor. Used to copy only those property values that are common to all classes derived from VerboseFormatInfoBase.

Приватные методы

Метод Описание
Format ( StringBuilder sb, string format, object arg, IFormatProvider formatProvider, int &maxLength ) : bool

Converts the value of a specified object to an equivalent string representation using specified format and culture-specific formatting information.

Описание методов

Clone() публичный Метод

Creates deep copy of this instance.
public Clone ( ) : object
Результат object

VerboseFormatInfo() публичный Метод

Default constructor.
public VerboseFormatInfo ( ) : System
Результат System

VerboseFormatInfo() публичный Метод

Constructor which allows caller to set name and type of the instance for which appropriate string is formatted using this object.
public VerboseFormatInfo ( Type instanceType, string instanceName ) : System
instanceType System.Type Type of the instance for which string is being formatted.
instanceName string Name of the instance for which string is being formatted.
Результат System

VerboseFormatInfo() публичный Метод

Copy constructor. Used to copy common property values from another formatter of the same type, which results in creating output string which is formatted in the same way.
public VerboseFormatInfo ( VerboseFormatInfo other ) : System
other VerboseFormatInfo Instance from which contents is copied to new instance of this class.
Результат System

VerboseFormatInfo() публичный Метод

Copy constructor. Used to copy only those property values that are common to all classes derived from VerboseFormatInfoBase.
public VerboseFormatInfo ( VerboseFormatInfoBase other ) : System
other VerboseFormatInfoBase Instance from which contents is copied to new instance of this class.
Результат System