ZeroInstall.BootstrapProcess.HandleSharedOptions C# (CSharp) Method

HandleSharedOptions() private method

Handles arguments passed to the target that are also applicable to the bootstrapper.
private HandleSharedOptions ( ) : void
return void
        private void HandleSharedOptions()
        {
            foreach (string arg in _targetArgs)
            {
                switch (arg)
                {
                    case "batch":
                        Handler.Verbosity = Verbosity.Batch;
                        break;
                    case "o":
                    case "offline":
                        Config.NetworkUse = NetworkLevel.Offline;
                        break;
                }
            }
        }