Ejemplo n.º 1
0
 public void DisableInterface(string domain)
 {
     if (Interfaces.ContainsKey(domain))
     {
         MIGInterface migInterface = Interfaces[domain];
         migInterface.Disconnect();
     }
 }
Ejemplo n.º 2
0
        public static void SetOption(this MIGInterface iface, string option, string value)
        {
            var opt = iface.GetOption(option);

            if (opt != null)
            {
                iface.Disconnect();
                opt.Value = value;
                iface.Connect();
            }
        }
Ejemplo n.º 3
0
        public MIGInterface DisableInterface(string domain)
        {
            MIGInterface migInterface = null;

            if (Interfaces.ContainsKey(domain))
            {
                migInterface           = Interfaces[domain];
                migInterface.IsEnabled = false;
                migInterface.Disconnect();
            }
            return(migInterface);
        }
Ejemplo n.º 4
0
        public static void SetOption(this MIGInterface iface, string option, string value)
        {
            var opt = iface.GetOption(option);

            if (opt == null)
            {
                opt = new MIGServiceConfiguration.Interface.Option()
                {
                    Name = option
                };
                iface.Options.Add(opt);
            }
            iface.Disconnect();
            opt.Value = value;
            iface.Connect();
        }