XML::release


NOTE: The features contained in this namespace require an EA (Early Access) license to be accessed. These commands will not function if your system does not have this license installed. For more information about obtaining the necessary license to access these features, please contact your sales representative. For more information, read about the LicenseDetails

Description

Releases the collected XML data. This method is used when you specify the explicit mode with the XML::collect command.
Note: All XML commands are unavailable beginning in v10.

Syntax

XML::release

XML::release

  • Releases the collected XML data.

Examples

when XML_BEGIN_DOCUMENT {
  XML::subscribe allevent
  XML::collect explicit
}
when XML_BEGIN_ELEMENT {
  log local0. "Processing element [XML::element]"
}
when XML_END_DOCUMENT {
  XML::release
}