Amend compoments to be keyed based

This commit is contained in:
TheXamlGuy
2024-06-29 11:23:45 +01:00
parent e19a963f8e
commit f921860fbe
9 changed files with 37 additions and 40 deletions
+3 -1
View File
@@ -14,7 +14,9 @@ public interface IComponentBuilder
IComponentBuilder AddConfiguration<TConfiguration>(string section)
where TConfiguration : ComponentConfiguration, new();
IComponentBuilder AddServices(Action<IServiceCollection> configureDelegate);
IComponentHost Build();
IComponentBuilder AddServices(Action<IServiceCollection> configureDelegate);
void SetComponentConfiguration(Action<ComponentContentConfiguration> configurationDelegate);
}