| Class | Jabber::Discovery::IqQueryDiscoInfo |
| In: |
lib/xmpp4r/discovery/iq/discoinfo.rb
|
| Parent: | IqQuery |
Get list of identities
| result: | [Array] of [Identity] |
# File lib/xmpp4r/discovery/iq/discoinfo.rb, line 55
55: def identities
56: res = []
57: each_element('identity') { |id|
58: res.push(id)
59: }
60: res
61: end
Get the queried Service Discovery node or nil
See IqQueryDiscoItems#node for a small explanation of this.
# File lib/xmpp4r/discovery/iq/discoinfo.rb, line 25
25: def node
26: attributes['node']
27: end