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

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

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

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

Returns True when sourceType is a String.

CanConvertTo ( ITypeDescriptorContext context, Type destinationType ) : bool

Returns True when destinationType is a String.

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

Converts a String in the short form like "omus" to a ReinstallModes enumeration.

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

Converts a ReinstallModes to a short form String like "omus".

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

Метод Описание
ReinstallModesConverter ( ) : System
TryParse ( string value, ReinstallModes &mode ) : bool

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

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

Returns True when sourceType is a String.
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.
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 in the short form like "omus" to a ReinstallModes enumeration.
The short form string contains invalid characters.
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 value to convert.
Результат object

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

Converts a ReinstallModes to a short form String like "omus".
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