 | LookupServiceFindByID Method |
Locates a CAEX object in the provided document using the specified ID - Attribute for identification.
Namespace: Aml.Engine.ServicesAssembly: Aml.Engine.Services (in Aml.Engine.Services.dll) Version: 3.2
Syntaxpublic CAEXObject FindByID(
CAEXDocument doc,
string id,
bool resolveAlias = false
)
Public Function FindByID (
doc As CAEXDocument,
id As String,
Optional resolveAlias As Boolean = false
) As CAEXObject
public:
virtual CAEXObject^ FindByID(
CAEXDocument^ doc,
String^ id,
bool resolveAlias = false
) sealed
Parameters
- doc CAEXDocument
- The document.
- id String
- The identifier.
- resolveAlias Boolean (Optional)
-
if set to true tries to resolve an alias reference with an ExternalReferenceResolver
service.
Return Value
CAEXObject
The located object with the specified ID or
null.
Implements
IQueryFindByID(CAEXDocument, String, Boolean)
See Also