예제 #1
0
 // Mobile caller id: ************************************************************
 private void OnMobileCallerId(MobileCallerIdArgs e)
 {
     if (MobileCallerId != null)
         MobileCallerId(this, e);
 }
예제 #2
0
파일: PLTLayer.cs 프로젝트: aliotta/Samples
 void m_spokes_MobileCallerId(object sender, MobileCallerIdArgs e)
 {
     OnPltEvent(new PltEventArgs(PltEventType.MobileCallerId, e.MobileCallerId));
 }
예제 #3
0
 void m_spokes_MobileCallerId(object sender, MobileCallerIdArgs e)
 {
     DebugPrint(MethodInfo.GetCurrentMethod().Name, "@@@ Mobile Caller Id: " + e.MobileCallerId);
 }
예제 #4
0
파일: Form1.cs 프로젝트: aliotta/Samples
        void spokes_MobileCallerId(object sender, MobileCallerIdArgs e)
        {
            LogMessage(MethodInfo.GetCurrentMethod().Name, ">>> Mobile Caller id: " + e.MobileCallerId);
            UpdateDeviceStatusGUIItem(mobileCallerIdLbl, e.MobileCallerId);
            UpdateDeviceStatusGUIItem(mobileNumberTextBox, e.MobileCallerId);

            AnimateBackgroundColor(mobileNumberTextBox, Color.FromArgb(0, 51, 102));
        }
예제 #5
0
파일: Program.cs 프로젝트: aliotta/Samples
 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);
 }