Click or drag to resize

IQueryAllElementsWithAliasReference Method

Gets all the elements which are descendants of the provided CAEX object and use an alias reference. Elements referencing the same Alias are grouped together. Use this method to validate the existence of referenced externals. 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> AllElementsWithAliasReference(
	CAEXBasicObject caexObject,
	string elementName = ""
)

Parameters

caexObject  CAEXBasicObject
The CAEX object.
elementName  String  (Optional)
If parameter is set, only elements with the given element Name are considered.

Return Value

ILookupString, ICAEXReference
Lookup table of elements with Alias references. The Alias part of the CAEXPath is used as a dictionary key.
See Also