hMailServer.Shared.CommandLineParser.GetArguments C# (CSharp) Méthode

GetArguments() public static méthode

public static GetArguments ( ) : string>.Dictionary
Résultat string>.Dictionary
        public static Dictionary<string, string> GetArguments()
        {
            return _argumentMap;
        }

Usage Example

Exemple #1
0
        public ucWizard()
        {
            InitializeComponent();

            _pages       = new List <UserControl>();
            _state       = new Dictionary <string, string>();
            _currentPage = 0;

            // Check if we should run the wizard in silent mode...
            if (CommandLineParser.ContainsArgument("/silent"))
            {
                _state = CommandLineParser.GetArguments();
            }
        }