SendXMLCmd(String,DateTime) Method
- Last UpdatedNov 06, 2025
- 1 minute read
The SendXMLCmd() method submits an XML command to the Middleware. This overload of the method checks whether the command was executed successfully or not by checking the <result> tag, and then it extracts and returns by reference the <last_edit_at> value in the XML response. Use this method for any Middleware command that returns a last_edit_at in the XML response.
'Declaration
Public Overloads Sub SendXMLCmd( _
ByVal xmlCmd As String, _
ByRef lastEditAt As Date _
)
public void SendXMLCmd(
string xmlCmd,
out DateTime lastEditAt
)
Parameters
- xmlCmd
- Required. Holds an XML string containing a Middleware command.
- lastEditAt
- Required. Holds an output parameter for returning the last edit at date/time.