Exemple #1
0
 protected static void BaseCallNotification(int callId, ECallNotification notifFlag, string text)
 {
     if (CallNotification != null)
     {
         CallNotification(callId, notifFlag, text);
     }
 }
Exemple #2
0
 private void OnCallNotification(int callId, ECallNotification notFlag, string text)
 {
     if (notFlag == ECallNotification.CN_HOLDCONFIRM)
     {
         IStateMachine sm = this[callId];
         if (!sm.IsNull)
         {
             sm.State.onHoldConfirm();
         }
     }
 }
Exemple #3
0
 private void OnCallNotification(int callId, ECallNotification notFlag, string text)
 {
     if (notFlag == ECallNotification.CN_HOLDCONFIRM)
     {
         CStateMachine sm = this.getCall(callId);
         if (sm != null)
         {
             sm.getState().onHoldConfirm();
         }
     }
 }
        //void CCallManager_AnswerCallNotification(int sessionId, string number, string info)
        //{



        //       CallAnswerNotification(sessionId, number, info);
        //}



        private void OnCallNotification(int callId, ECallNotification notFlag, string text)
        {
            if (notFlag == ECallNotification.CN_HOLDCONFIRM)
            {
                IStateMachine machine = this.getCall(callId);
                if (!machine.IsNull)
                {
                    machine.State.onHoldConfirm();
                }
            }
        }
Exemple #5
0
 private void OnCallNotification(int callId, ECallNotification notFlag, string text)
 {
     if (notFlag == ECallNotification.CN_HOLDCONFIRM)
       {
     CStateMachine sm = this.getCall(callId);
     if (sm != null) sm.getState().onHoldConfirm();
       }
 }
Exemple #6
0
 protected void BaseCallNotification(int callId, ECallNotification notifFlag, string text)
 {
   if (null != CallNotification) CallNotification(callId, notifFlag, text);
 }
 protected static void BaseCallNotification(int callId, ECallNotification notifFlag, string text)
 {
   if (null != CallNotification) CallNotification(callId, notifFlag, text);
 }
Exemple #8
0
 private void OnCallNotification(int callId, ECallNotification notFlag, string text)
 {
   if (notFlag == ECallNotification.CN_HOLDCONFIRM)
   {
     IStateMachine sm = this[callId];
     if (!sm.IsNull) sm.State.onHoldConfirm();
   }
 }