InheritanceInfoProviderBaseCheckIfIsSubTypeOf 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.1.0.0 (5.1.0)
Syntax public bool CheckIfIsSubTypeOf(
string typeToCheck,
string superType
)
Public Function CheckIfIsSubTypeOf (
typeToCheck As String,
superType As String
) As Boolean
Parameters
- typeToCheck
- Type: SystemString
Type to check. - superType
- Type: SystemString
The super.
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
IInheritanceInfoProviderCheckIfIsSubTypeOf(String, String)See Also