Exemplo n.º 1
0
 static void spokes_MobileCallerId(object sender, MobileCallerIdArgs e)
 {
     Console.WriteLine("MobileCallerId, sending message to Client App via socket...");
     if (socket == null)
     {
         Console.WriteLine("INFO: No client connected.");
         return;
     }
     socket.sendMsg("MobileCallerId," + e.MobileCallerId);
 }
Exemplo n.º 2
0
 void m_spokes_MobileCallerId(object sender, MobileCallerIdArgs e)
 {
     UpdateMobileCallerIdToConnection(e.MobileCallerId);
 }
Exemplo n.º 3
0
 void m_spokes_MobileCallerId(object sender, MobileCallerIdArgs e)
 {
     DebugPrint(MethodInfo.GetCurrentMethod().Name, "@@@ Mobile Caller Id: " + e.MobileCallerId);
 }
Exemplo n.º 4
0
 void m_spokes_MobileCallerId(object sender, MobileCallerIdArgs e)
 {
     OnPltEvent(new PltEventArgs(PltEventType.MobileCallerId, e.MobileCallerId));
 }