Class Jabber::RPC::IqQueryRPC
In: lib/xmpp4r/rpc/iq/rpc.rb
Parent: IqQuery

Methods

typed_add  

Constants

NS_RPC = 'jabber:iq:rpc'

Public Instance methods

TODO: Is typed_add with a String right here?

[Source]

    # File lib/xmpp4r/rpc/iq/rpc.rb, line 14
14:       def typed_add(e)
15:         if e.kind_of? String
16:           typed_add(REXML::Document.new(e).root)
17:         else
18:           super
19:         end
20:       end

[Validate]