Exemple #1
0
        public CommandSection CreateCommandSection(string sectionKey)
        {
            CommandSection section = new CommandSection(sectionKey);

            sections.Add(sectionKey, section);
            return(section);
        }
Exemple #2
0
        public void AddParameterValue(string sectionKey, string value)
        {
            CommandSection section = sections[sectionKey];

            section.AddParameterValue(value);
        }