// Mobile caller id: ************************************************************ private void OnMobileCallerId(MobileCallerIdArgs e) { if (MobileCallerId != null) MobileCallerId(this, e); }
void m_spokes_MobileCallerId(object sender, MobileCallerIdArgs e) { OnPltEvent(new PltEventArgs(PltEventType.MobileCallerId, e.MobileCallerId)); }
void m_spokes_MobileCallerId(object sender, MobileCallerIdArgs e) { DebugPrint(MethodInfo.GetCurrentMethod().Name, "@@@ Mobile Caller Id: " + e.MobileCallerId); }
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)); }
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); }