Ejemplo n.º 1
0
        private void cpNameBtn_Clicked(object sender, EventArgs e)
        {
            try
            {
                cplist = TapiManager.GetCpNames().ToList();
                if (cplist != null)
                {
                    Log.Debug(Globals.LogTag, "inside common button clicked ");
                    for (int i = 0; i < cplist.Count; i++)
                    {
                        Log.Debug(Globals.LogTag, "Cp name = " + cplist[i]);
                    }
                }
            }

            catch (Exception ex)
            {
                Log.Debug(Globals.LogTag, "Getcpnames throw exception = " + ex.ToString());
            }
        }