Click or drag to resize

QueryServiceAllElementsWithIDs Method

Gets all the elements which are descendants of the provided CAEX object with IDs. Elements using the same ID are grouped together. Use this method to validate the uniqueness of IDs.

Namespace: Aml.Engine.Services
Assembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntax
public ILookup<string, ICAEXReference> AllElementsWithIDs(
	CAEXBasicObject caexObject,
	string ID = ""
)

Parameters

caexObject  CAEXBasicObject
The CAEX object.
ID  String  (Optional)
If an ID is specified, only elements with the defined ID are searched.

Return Value

ILookupString, ICAEXReference
Lookup table of elements with IDs. The ID is used as a group key.

Implements

IQueryAllElementsWithIDs(CAEXBasicObject, String)
See Also