 | IQueryAllClassReferencesDeep(CAEXObject) Method |
Gets all classes which have references to the provided CAEX object and their referencing classes (recursive).
This method extends the
AllClassReferences(CAEXObject) and gets not only the directly
derived classes of a base class but also the derived classes of these classes and further on.
Namespace: Aml.Engine.Services.InterfacesAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
SyntaxIEnumerable<CAEXObject> AllClassReferencesDeep(
CAEXObject caexObject
)
Function AllClassReferencesDeep (
caexObject As CAEXObject
) As IEnumerable(Of CAEXObject)
IEnumerable<CAEXObject^>^ AllClassReferencesDeep(
CAEXObject^ caexObject
)
Parameters
- caexObject CAEXObject
- The CAEX object.
Return Value
IEnumerableCAEXObjectThe derived classes tree for the specified base class.
See Also