This commit is contained in:
TheXamlGuy
2024-07-17 21:43:58 +01:00
parent efd00ff81a
commit 93c7a43ab4
75 changed files with 231 additions and 183 deletions
+2 -2
View File
@@ -3,7 +3,7 @@
public class ContentFactory(IServiceProvider provider,
IServiceFactory factory) : IContentFactory
{
public Task<object?> CreateAsync(IContentTemplateDescriptor descriptor,
public Task<object?> CreateAsync(IContentTemplateDescriptor descriptor,
object[] parameters)
{
object? content = parameters is { Length: > 0 }
@@ -24,4 +24,4 @@ public class ContentFactory(IServiceProvider provider,
return Task.FromResult<object?>(content);
}
}
}