Exemplo n.º 1
0
        public void BindMetaApp(DialableNumber digits, MetaAppLegTypes leg, MetaAppFlags[] flags, string application, string pars)
        {
            string sflags = "";

            if (flags != null)
            {
                foreach (MetaAppFlags flg in flags)
                {
                    sflags += (char)flg;
                }
            }
            ExecuteApplication("bind_meta_app", digits.ToString() + " " + leg.ToString() + " " + sflags + " " + application + (pars == null ? "" : "::" + pars), false);
        }
Exemplo n.º 2
0
 public BindMetaApp(sDialableNumber digits, MetaAppLegTypes leg, MetaAppFlags[] flags,
     string application, string arguements)
 {
     _digits = digits;
     _leg = leg;
     _flags = flags;
     _application = application;
     _arguements = arguements;
 }
 public void BindMetaApp(DialableNumber digits, MetaAppLegTypes leg, MetaAppFlags[] flags, string application, string pars)
 {
     string sflags = "";
     if (flags != null)
     {
         foreach (MetaAppFlags flg in flags)
             sflags += (char)flg;
     }
     ExecuteApplication("bind_meta_app", digits.ToString() + " " + leg.ToString() + " " + sflags + " " + application + (pars == null ? "" : "::" + pars), false);
 }