This commit is contained in:
TheXamlGuy
2024-09-27 21:25:36 +01:00
parent bd577975b2
commit 928969f39f
5 changed files with 16 additions and 11 deletions
+1
View File
@@ -6,6 +6,7 @@ public interface IComponentFactory
{
IComponentHost? Create<TComponent, TConfiguration>(string name,
TConfiguration? configuration = null,
Action<IComponentBuilder>? builderDelegate = null,
Action<IServiceCollection>? servicesDelegate = null)
where TComponent : IComponent
where TConfiguration : ComponentConfiguration, new();