Click or drag to resize

ModelInfoProviderBase.CheckIfIsSubTypeOf Method

Determines if typeToCheck is a subtype of superType.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax
public bool CheckIfIsSubTypeOf(
	string typeToCheck,
	string superType
)

Parameters

typeToCheck
Type: System.String
Type to check.
superType
Type: System.String
The supertype.

Return Value

Type: Boolean
true if typeToCheck is a subtype of supertype, false otherwise. Also returns false is supertype isn't in a hierarchy.

Implements

IInheritanceInfoProvider.CheckIfIsSubTypeOf(String, String)
See Also