 | QueryServiceAllClassReferences(CAEXDocument, String, String) Method |
Gets all classes which have references to the provided class path. Use this method to get all classes which have
a class to class relation to the class, identified by the provided classPath. If the
elementName is
set, only classes with the defined element name are considered.
Namespace: Aml.Engine.ServicesAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntaxpublic IEnumerable<CAEXObject> AllClassReferences(
CAEXDocument document,
string classPath,
string elementName = ""
)
Public Function AllClassReferences (
document As CAEXDocument,
classPath As String,
Optional elementName As String = ""
) As IEnumerable(Of CAEXObject)
public:
virtual IEnumerable<CAEXObject^>^ AllClassReferences(
CAEXDocument^ document,
String^ classPath,
String^ elementName = L""
) sealed
Parameters
- document CAEXDocument
- The CAEX document which is searched through.
- classPath String
- The class path.
- elementName String (Optional)
-
Name of the element. Valid values are 'RoleClass', 'SystemUnitClass', 'InterfaceClass' and
'AttributeType'.
Return Value
IEnumerableCAEXObject
An enumeration of all classes which use the identified class as a base class.
Implements
IQueryAllClassReferences(CAEXDocument, String, String)
See Also