Click or drag to resize
TypeConverterStore.GetTypeConvertersUsingTypeFilter 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.0.0.0 (5.0.0)
Syntax
public List<TypeConverterDefinition> GetTypeConvertersUsingTypeFilter(
	Type coreType,
	Type fromType
)

Parameters

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

Return Value

Type: List<TypeConverterDefinition>
See Also