public ExportConfig Clone() { ExportConfig newExportConfig = new ExportConfig(); foreach (KeyValuePair <string, object> config in this.configs) { newExportConfig.Set(config.Key, config.Value); } return(newExportConfig); }
public List <string> Export(ExportConfig exportConfig, string outputDir, bool unzip, Boolean exportBulk = true) { exportConfig.Set("exportBulk", exportBulk); return((List <string>)ExportChart(exportConfig, outputDir, unzip)); }