C# Класс Microsoft.Tools.WindowsInstaller.EncodingConverter

Provides conversion between strings and Encoding.
Наследование: System.ComponentModel.TypeConverter
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
CanConvertFrom ( ITypeDescriptorContext context, Type sourceType ) : bool

Returns True when sourceType is a String or Int32.

CanConvertTo ( ITypeDescriptorContext context, Type destinationType ) : bool

Returns True when destinationType is a String or Int32.

ConvertFrom ( ITypeDescriptorContext context, CultureInfo culture, object value ) : object

Converts a String or Int32 to an Encoding.

Returns Encoding.Default if the value is null or an empty string.

ConvertTo ( ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType ) : object

Gets the name or code page for an Encoding.

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

Метод Описание
IsNumeric ( Type type ) : bool

Returns true if the type is a signed or unsigned short or larger integer.

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

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

Returns True when sourceType is a String or Int32.
public CanConvertFrom ( ITypeDescriptorContext context, Type sourceType ) : bool
context ITypeDescriptorContext Additional context for conversion.
sourceType System.Type The type of the source object.
Результат bool

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

Returns True when destinationType is a String or Int32.
public CanConvertTo ( ITypeDescriptorContext context, Type destinationType ) : bool
context ITypeDescriptorContext Additional context for conversion.
destinationType System.Type The type of the destination object.
Результат bool

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

Converts a String or Int32 to an Encoding.
Returns Encoding.Default if the value is null or an empty string.
No could be matched to the string or code page integer.
public ConvertFrom ( ITypeDescriptorContext context, CultureInfo culture, object value ) : object
context ITypeDescriptorContext Additional context for conversion.
culture System.Globalization.CultureInfo The culture to use for conversion.
value object The or value to convert.
Результат object

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

Gets the name or code page for an Encoding.
public ConvertTo ( ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType ) : object
context ITypeDescriptorContext Additional context for conversion.
culture System.Globalization.CultureInfo The culture to use for conversion.
value object The to convert.
destinationType System.Type The type of the destination object.
Результат object