 | CAEXObjectExtensionsGetFullNodePath Method |
Gets the full node path of the provided CAEX object, which includes the object names of all
ancestor hierarchy levels and the name of the object itself.
Namespace: Aml.Engine.CAEX.ExtensionsAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntaxpublic static string GetFullNodePath(
this ICAEXObject caexObject
)
<ExtensionAttribute>
Public Shared Function GetFullNodePath (
caexObject As ICAEXObject
) As String
public:
[ExtensionAttribute]
static String^ GetFullNodePath(
ICAEXObject^ caexObject
)
Parameters
- caexObject ICAEXObject
- The CAEX object.
Return Value
StringThe path to the XML node.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
ICAEXObject. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Remarks
Please note that this method returns a different result than the
CAEXPath method, which
returns
the CAEX path used for referencing objects.
See Also