Sends request to Innovator server and returns server response as an item.
Namespace:
Aras.IOM
Assembly:
IOM (in IOM.dll) Version: 14.0.9.36244
Syntaxpublic Item applyAML(
string AML
)
Public Function applyAML (
AML As String
) As Item
public Item applyAML(
String AML
)
public function applyAML(
AML : String
) : Item
Parameters
- AML
- Type: SystemString
AML script to be sent to Innovator server.
Return Value
Type:
ItemServer response.
ExceptionsException | Condition |
---|
XmlException | There is a load or parse error in the AML. |
Remarks
It's assumed that passed AML script has a root tag <AML> that contains one or more
<Item> children elements. The method send the AML script to the server
and returns an Item object where the dom property is
the xml response returned from the server.
See Also