예제 #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;
 }