Example #1
0
        private void PhonebookInitInfoBtn_Clicked(object sender, EventArgs e)
        {
            try
            {
                Log.Debug(Globals.LogTag, "Pb init info call start");
                SimPhonebookStatus pbStatus = pb.GetPhonebookInitInfo();
                if (pbStatus == null)
                {
                    Log.Debug(Globals.LogTag, "pbStatus is null");
                    return;
                }

                Log.Debug(Globals.LogTag, "pbStatus.isinitcompleted: " + pbStatus.IsInitCompleted);
                Log.Debug(Globals.LogTag, "pbStatus.pblist: " + pbStatus.PbList.Fdn + " " + pbStatus.PbList.Adn + " " + pbStatus.PbList.Sdn + " " + pbStatus.PbList.Usim + " " + pbStatus.PbList.Aas + " " + pbStatus.PbList.Gas);
                Log.Debug(Globals.LogTag, "Pb init info call success");
            }

            catch (Exception ex)
            {
                Log.Debug(Globals.LogTag, "Pb get init info exception: " + ex.ToString());
            }
        }