예제 #1
0
        void IDispatcher.DTMF(DTMFMessage pMessage)
        {
            IDispatcher target;

            lock (this) {
                target = Target;
            }
            if (target != null)
            {
                target.DTMF(pMessage);
            }
        }
예제 #2
0
 public virtual void DTMF(DTMFMessage pMessage)
 {
 }
예제 #3
0
파일: World.cs 프로젝트: Hawk777/iecc8
        // All functions in this region are called on the thread pool by WCF, so any touching of the Route objects, emitting of events, etc. must be posted to SyncContext.

        void IDispatcher.DTMF(DTMFMessage pMessage)
        {
            MessageReceived = true;
        }