Example #1
0
 public void RegisterImporter(string identifier, ImporterCreatorCallback callback)
 {
     this.registeredImporters.Add(identifier, new ImporterService.ImporterEntry(callback));
 }
Example #2
0
 public ImporterEntry(ImporterCreatorCallback callback)
 {
     this.callback = callback;
 }