hMailServer.Shared.ucWizard.Start C# (CSharp) Method

Start() public method

public Start ( ) : void
return void
        public void Start()
        {
            if (CommandLineParser.ContainsArgument("/silent"))
             {
            for (int i = 0; i < _pages.Count; i++)
            {
               if (!ShowPage(i))
                  return;
            }

            if (Cancel != null)
               Cancel(this, null);
             }
             else
            ShowPage(0);
        }