 | LookupServiceElementsWithCAEXPathReference Method |
Gets alls the elements which are descendants of the provided CAEX object
which have a reference to the provided CAEXPath. The elements in the result collection are
references, which define the CAEX object and the attribute, containing the reference
.
If the elementName is set, only elements with the defined element name are considered.
Namespace: Aml.Engine.ServicesAssembly: Aml.Engine.Services (in Aml.Engine.Services.dll) Version: 3.2
Syntaxpublic IEnumerable<ICAEXReference> ElementsWithCAEXPathReference(
CAEXBasicObject caexObject,
string caexPath,
string elementName = ""
)
Public Function ElementsWithCAEXPathReference (
caexObject As CAEXBasicObject,
caexPath As String,
Optional elementName As String = ""
) As IEnumerable(Of ICAEXReference)
public:
virtual IEnumerable<ICAEXReference^>^ ElementsWithCAEXPathReference(
CAEXBasicObject^ caexObject,
String^ caexPath,
String^ elementName = L""
) sealed
Parameters
- caexObject CAEXBasicObject
- The CAEX object.
- caexPath String
- The path.
- elementName String (Optional)
- If parameter is set, only elements with the given element Name are considered.
Return Value
IEnumerableICAEXReference
a collection of element references which have a reference to the provided Path^.
Implements
IQueryElementsWithCAEXPathReference(CAEXBasicObject, String, String)
See Also