Click or drag to resize
TypeConverterStoreGetTypeConvertersUsingTypeFilter Method
Gets the type converters using a type filter. It returns all type converters which have coreType as the core type (the type of object returned from CreateInstance) and if fromType is specified, it is used to limit the list of type converters to return by filtering on the fact that they can convert from this type. If coreType is set to null, it will filter on all type converters which can convert from the fromType specified.

Namespace:  SD.LLBLGen.Pro.ApplicationCore.GeneralDataStructures
Assembly:  SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public List<TypeConverterDefinition> GetTypeConvertersUsingTypeFilter(
	Type coreType,
	Type fromType
)

Parameters

coreType
Type: SystemType
The core .NET type of the type converter.
fromType
Type: SystemType
The .NET type a converter can convert from.

Return Value

Type: ListTypeConverterDefinition
See Also