VAGSuite.msiupdater.ExecuteUpdate C# (CSharp) Метод

ExecuteUpdate() публичный Метод

public ExecuteUpdate ( System.Version ver ) : void
ver System.Version
Результат void
        public void ExecuteUpdate(Version ver)
        {
            string command = "http://trionic.mobixs.eu/vagedcsuite/" + ver.ToString() + "/VAGEDCSuite.msi";
            try
            {
                System.Diagnostics.Process.Start(command);
            }
            catch (Exception E)
            {
                PumpString("Exception when checking new update(s): " + E.Message, false, false, new Version(), false, "");
            }
        }