Click or drag to resize

IQueryAllElementsWithCAEXPathReference Method

Gets all the elements which are descendants of the provided CAEX object and use a path reference. Elements referencing the same path are grouped together. Use this method to validate the existence of referenced classes. If the elementName is set, only elements with the defined element name are considered.

Namespace: Aml.Engine.Services.Interfaces
Assembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntax
ILookup<string, ICAEXReference> AllElementsWithCAEXPathReference(
	CAEXBasicObject caexObject,
	string elementName = "",
	bool includeSelf = false
)

Parameters

caexObject  CAEXBasicObject
The CAEX object.
elementName  String  (Optional)
If parameter is set, only elements with the given element Name are considered.
includeSelf  Boolean  (Optional)
If true, the specified object is checked for a path reference too

Return Value

ILookupString, ICAEXReference
Lookup table of elements with path references. The CAEXPath is used as a grouping key.
See Also