C# Class Spring.Objects.Factory.Config.CustomConverterConfigurer

Inheritance: Spring.Objects.Factory.Config.AbstractConfigurer
Show file Open project: spring-projects/spring-net Class Usage Examples

Public Methods

Method Description
PostProcessObjectFactory ( IConfigurableListableObjectFactory factory ) : void

Registers any custom converters with the supplied factory.

Protected Methods

Method Description
ResolveConverter ( object value ) : TypeConverter

Resolves the supplied value into a System.ComponentModel.TypeConverter instance.

Method Details

PostProcessObjectFactory() public method

Registers any custom converters with the supplied factory.
/// In case of errors. ///
public PostProcessObjectFactory ( IConfigurableListableObjectFactory factory ) : void
factory IConfigurableListableObjectFactory /// The object factory to register the converters with. ///
return void

ResolveConverter() protected method

Resolves the supplied value into a System.ComponentModel.TypeConverter instance.
/// If the supplied is , /// or the supplied cannot be resolved. ///
protected ResolveConverter ( object value ) : TypeConverter
value object /// The object that is to be resolved into a /// instance. ///
return System.ComponentModel.TypeConverter