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