Ejemplo n.º 1
0
 internal Call(Phone phone)
 {
     this.phone = phone;
     Init();
     m_core = SCFCore.Instance.m_core;
     m_core_telephoneService = SCFCore.Instance.m_core_telephoneService;
 }
Ejemplo n.º 2
0
 private void UnRegisterToCore()
 {
     if (!isRegisteredToCore)
     {
         return;
     }
     m_core.m_CallbackEvent -= OnCoreCallBack;
     m_core             = null;
     isRegisteredToCore = false;
 }
Ejemplo n.º 3
0
        private void RegisterToCore()
        {
            if (isRegisteredToCore)
            {
                return;
            }
            m_core = SCFCore.Instance.m_core;
            m_core.m_CallbackEvent += OnCoreCallBack;

            isRegisteredToCore = true;
        }
Ejemplo n.º 4
0
        private void RegisterToCore()
        {
            if (isRegisteredToCore)
            {
                return;
            }
            m_core = SCFCore.Instance.m_core;
            m_core.m_CallbackEvent += OnCoreCallBack;
            m_core.setApplicationIntegrationProperties(this.clientId, this.clientSecret, this.scope, this.redirectUri);

            isRegisteredToCore = true;
        }