Interface ITypeConverter
- Namespace
- Steeltoe.Common.Expression.Internal
- Assembly
- Steeltoe.Common.Abstractions.dll
A type converter can convert values between different types encountered during expression evaluation. TODO: This interface is not complete
public interface ITypeConverter
Properties
ConversionService
IConversionService ConversionService { get; set; }
Property Value
Methods
CanConvert(Type, Type)
bool CanConvert(Type source, Type target)
Parameters
Returns
ConvertValue(object, Type, Type)
object ConvertValue(object value, Type source, Type target)