示例#1
0
文件: XMPP.cs 项目: remobjects/ipxmpp
 protected bool OnIQ(IQ anIQ)
 {
     if (IQ != null)
     {
         IQEventArgs args = new IQEventArgs(anIQ);
         IQ(this, args);
         return(args.SkipReply);
     }
     return(false);
 }
示例#2
0
文件: XMPP.cs 项目: remobjects/ipxmpp
 protected bool OnIQ(IQ anIQ)
 {
     if (IQ != null)
     {
         IQEventArgs args = new IQEventArgs(anIQ);
         IQ(this, args);
         return args.SkipReply;
     }
     return false;
 }