 | AMLEngineAdapterConsistencyCheck_ClassReference Method |
Note: This API is now obsolete.
Check if the given classPath is a valid path to an existent class in the AML file.
Namespace: Aml.Engine.AdapterAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntax[ObsoleteAttribute("Use FindByPath and check if not null")]
public static bool ConsistencyCheck_ClassReference(
this CAEXBasicObject caexObject,
string classPath
)
<ExtensionAttribute>
<ObsoleteAttribute("Use FindByPath and check if not null")>
Public Shared Function ConsistencyCheck_ClassReference (
caexObject As CAEXBasicObject,
classPath As String
) As Boolean
public:
[ExtensionAttribute]
[ObsoleteAttribute(L"Use FindByPath and check if not null")]
static bool ConsistencyCheck_ClassReference(
CAEXBasicObject^ caexObject,
String^ classPath
)
Parameters
- caexObject CAEXBasicObject
- The CAEX object.
- classPath String
- The class path to check for validity.
Return Value
Boolean
True if a class at the given path exists, else false.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
CAEXBasicObject. 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).
See Also