 | QueryServiceAllElementsWithAliasReference 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.
Namespace: Aml.Engine.ServicesAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntaxpublic ILookup<string, ICAEXReference> AllElementsWithAliasReference(
CAEXBasicObject caexObject,
string elementName = ""
)
Public Function AllElementsWithAliasReference (
caexObject As CAEXBasicObject,
Optional elementName As String = ""
) As ILookup(Of String, ICAEXReference)
public:
virtual ILookup<String^, ICAEXReference^>^ AllElementsWithAliasReference(
CAEXBasicObject^ caexObject,
String^ elementName = L""
) sealed
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
group of elements with Alias references. The Alias part of the CAEXPath is used as a group key.
Implements
IQueryAllElementsWithAliasReference(CAEXBasicObject, String)
See Also