Microsoft.Tools.WindowsInstaller.EncodingConverter.ConvertTo C# (CSharp) Method

ConvertTo() public method

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.
return object
        public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
        {
            var enc = value as Encoding;
            if (null != enc && this.CanConvertTo(context, destinationType))
            {
                if (typeof(string) == destinationType)
                {
                    return enc.WebName;
                }
                else if (IsNumeric(destinationType))
                {
                    return Convert.ChangeType(enc.CodePage, destinationType, CultureInfo.InvariantCulture);
                }
            }

            return base.ConvertTo(context, culture, value, destinationType);
        }

Usage Example

Ejemplo n.º 1
0
        public void ConvertToInteger()
        {
            var converter = new EncodingConverter();

            Assert.IsTrue(converter.CanConvertTo(typeof(int)), "Cannot convert to an integer.");

            var value = (int)converter.ConvertTo(Encoding.UTF8, typeof(int));

            Assert.AreEqual <int>(65001, value, "Could not convert to an integer.");
        }
All Usage Examples Of Microsoft.Tools.WindowsInstaller.EncodingConverter::ConvertTo