Click or drag to resize

LookupServiceAllElementsWithIDReference Method

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

Namespace: Aml.Engine.Services
Assembly: Aml.Engine.Services (in Aml.Engine.Services.dll) Version: 3.2
Syntax
public ILookup<string, ICAEXReference> AllElementsWithIDReference(
	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 ID references. The ID is used as a dictionary key.

Implements

IQueryAllElementsWithIDReference(CAEXBasicObject, String)
Exceptions
ExceptionCondition
ArgumentNullExceptioncaexObject
See Also