Esempio n. 1
0
 private void DistributeMessage(GroupSession session, GroupInstantMessage im)
 {
     try
     {
         foreach (UGUI target in session.Participants)
         {
             m_IMRouter.SendWithResultDelegate(im.GetAgentIM(target));
         }
     }
     catch
     {
         /* do not pass any from here since we cannot reliably say so which failed */
     }
 }