NXSL:PostEvent

From NetXMS Wiki
Revision as of 22:45, 1 April 2012 by Victor (talk | contribs) (Created page with "__NOTOC__ Post event on behalf of given node. == Syntax == PostEvent(''node'', ''event'', ''tag'', ...); == Parameters == :{| |- | ''node'' || Node object to send event ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Post event on behalf of given node.


Syntax

PostEvent(node, event, tag, ...);


Parameters

node Node object to send event on behalf of.
event Event code.
tag User tag associated with event. Optional, can be leaved out or set to null.
... 0 or more event-specific parameters.


Return Value

TRUE if event was posted successfully or FALSE if not.


Examples

PostEvent($node, 100000)
PostEvent($node, 100000, "my tag", "param1", "param2")
PostEvent($node, 100000, null, "param1")