jabber.connection.PubSubNode.Configure C# (CSharp) Method

Configure() public method

Request configuration form as the owner
public Configure ( IqCB callback, object state ) : void
callback IqCB Callback. Must not be null. Will not be called back /// if there is an error, but instead OnError will be called.
state object State information to be passed back to callback
return void
        public void Configure(IqCB callback, object state)
        {
            OwnerPubSubCommandIQ<OwnerConfigure> iq = new OwnerPubSubCommandIQ<OwnerConfigure>(m_stream.Document);
            iq.To = m_jid;
            iq.Type = IQType.get;
            iq.Command.Node = m_node;
            BeginIQ(iq, OnConfigure, new IQTracker.TrackerData(callback, state, null, null));
        }