Discuss this help topic in SecureBlackbox Forum

TElXMLDOMDocument.LookupEntityByRef

TElXMLDOMDocument     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Performs a search for an entity by its ref.

Declaration

[C#]
    string LookupEntityByRef(string aRef);

[VB.NET]
    Function LookupEntityByRef(ByVal aRef As String) As String

[Pascal]
    function LookupEntityByRef(const aRef : XMLString) : XMLString;

[C++]
    void LookupEntityByRef(const sb_u16string &aRef, sb_u16string &OutResult);
    void LookupEntityByRef(const std::wstring &aRef, std::wstring &OutResult);

[PHP]
    string LookupEntityByRef(string $aRef)

[Java]
    String lookupEntityByRef(String aRef);

Parameters

  • aRef - the reference to search for.

Return value

    Returns the desired entity.

Description

    Use this method to look up for an entity by ref.

Discuss this help topic in SecureBlackbox Forum