Description
-
Fires when unhandled IQ element is received.
-
Syntax
-
Private Sub
object_UnhandledIQ(JID, IqType, ID,
Tags)
The UnhandledIQ Event syntax has these
parts:
| object |
A wodXMPP object. |
| JID |
A String value. Holds JID that sent IQ packet. |
| IqType |
An
IqTypes
enumeration. Type of IQ packet. |
| ID |
A String value. Holds ID of the packet, if set. |
| Tags |
A XMPPTags object. A
reference to collection of child XML tags. |
Remarks
-
The Event is triggered when IQ xml packet arrives from the
server, but wodXMPP ignores it since it doesn't implement certain
feature. This allow you to react on IQ packet and send back
response. You can, of course, ignore this event and wodXMPP will not
send any response back.
-
-
wodXMPP will try to help you by parsing incoming XML data to
collection of one or more Tag
elements - stored in tree-alike structure in
Tags collection. You should
go through provided Tags collection to see all of them, or
search one you're interested in. Please note that not all elements
are part of parent Tags collection - each tag element can
contain zero or more children (and so on..) going deep.
|