Click or drag to resize

imbTypologyHelpersGetBaseTypeList Method

imbSCI | imbACE | imbNLP | imbWEM | imbWBI
Returns list of all inherited types, in order of inherence: classBase.classInherited

Namespace:  imbSCI.Core.extensions.typeworks
Assembly:  imbSCI.Core (in imbSCI.Core.dll) Version: 0.3.58.
Syntax
C#
public static List<Type> GetBaseTypeList(
	this Type type,
	bool includeSelf = false,
	bool uniqueTypes = false,
	Type untilClass = null,
	int callCount = 0
)
Request Example View Source

Parameters

type
Type: SystemType
Tip za koji se vracaju nasledjeni tipovi
includeSelf (Optional)
Type: SystemBoolean
da li da na kraju liste ubaci i sebe
uniqueTypes (Optional)
Type: SystemBoolean
da li da budu samo unikatni tipovi
untilClass (Optional)
Type: SystemType
Do koje klase da ide duboko u nasledjivanju? ako je null onda sve
callCount (Optional)
Type: SystemInt32
The call count.

Return Value

Type: ListType
Listu nasledjivanja

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Type. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also