 | AMLEngineAdapterName Method |
Note: This API is now obsolete.
Get the Name of the specified object.
Namespace: Aml.Engine.AdapterAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntax[ObsoleteAttribute("Name is not defined for a CAEXBasicObject. Access Name property of CAEXObject.")]
public static string Name(
this CAEXBasicObject caexObject
)
<ExtensionAttribute>
<ObsoleteAttribute("Name is not defined for a CAEXBasicObject. Access Name property of CAEXObject.")>
Public Shared Function Name (
caexObject As CAEXBasicObject
) As String
public:
[ExtensionAttribute]
[ObsoleteAttribute(L"Name is not defined for a CAEXBasicObject. Access Name property of CAEXObject.")]
static String^ Name(
CAEXBasicObject^ caexObject
)
Parameters
- caexObject CAEXBasicObject
-
The CAEX object.
Return Value
String
If the caexObject is of type CAEXObject, the name is returned; otherwise
string.Empty.
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