C# Класс Catel.Services.ObjectConverterService

Service to convert objects to strings and vice versa.
Наследование: IObjectConverterService
Показать файл Открыть проект

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

Метод Описание
ConvertFromObjectToObject ( object value, Type targetType ) : object

Converts the specified object to an object.

ConvertFromObjectToString ( object value ) : string

Converts the specified object to a string.

ConvertFromObjectToString ( object value, CultureInfo culture ) : string

Converts from object to string.

ConvertFromStringToObject ( string value, Type targetType ) : object

Converts the specified string value to an object.

ConvertFromStringToObject ( string value, Type targetType, CultureInfo culture ) : object

Converts from string to object.

ObjectConverterService ( ) : System

Initializes a new instance of the ObjectConverterService class.

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

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

Converts the specified object to an object.
public ConvertFromObjectToObject ( object value, Type targetType ) : object
value object The value.
targetType System.Type Type of the target.
Результат object

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

Converts the specified object to a string.
public ConvertFromObjectToString ( object value ) : string
value object The value.
Результат string

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

Converts from object to string.
public ConvertFromObjectToString ( object value, CultureInfo culture ) : string
value object The value.
culture System.Globalization.CultureInfo The culture.
Результат string

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

Converts the specified string value to an object.
public ConvertFromStringToObject ( string value, Type targetType ) : object
value string The value.
targetType System.Type The target type.
Результат object

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

Converts from string to object.
public ConvertFromStringToObject ( string value, Type targetType, CultureInfo culture ) : object
value string The value.
targetType System.Type Type of the target.
culture System.Globalization.CultureInfo The culture.
Результат object

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

Initializes a new instance of the ObjectConverterService class.
public ObjectConverterService ( ) : System
Результат System