Click or drag to resize

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.Extensions
Assembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntax
public static string GetFullNodePath(
	this ICAEXObject caexObject
)

Parameters

caexObject  ICAEXObject
The CAEX object.

Return Value

String
The 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