 | LookupServiceAllClassReferencesDeep(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.ServicesAssembly: Aml.Engine.Services (in Aml.Engine.Services.dll) Version: 3.2
Syntaxpublic IEnumerable<CAEXObject> AllClassReferencesDeep(
CAEXObject caexObject
)
Public Function AllClassReferencesDeep (
caexObject As CAEXObject
) As IEnumerable(Of CAEXObject)
public:
virtual IEnumerable<CAEXObject^>^ AllClassReferencesDeep(
CAEXObject^ caexObject
) sealed
Parameters
- caexObject CAEXObject
- The CAEX object.
Return Value
IEnumerableCAEXObject
The derived classes tree for the specified base class.
Implements
IQueryAllClassReferencesDeep(CAEXObject)
See Also