Class SpectreConsoleTypeRegistrar
Enables type registration for Spectre.Console applications, supporting both IServiceProvider and IServiceCollection.
Implements
Inherited Members
Namespace: Coree.NETStandard.SpectreConsole
Assembly: Coree.NETStandard.dll
Syntax
public class SpectreConsoleTypeRegistrar : ITypeRegistrar
Constructors
| Edit this page View SourceSpectreConsoleTypeRegistrar(IServiceCollection, bool)
Constructs with an IServiceCollection, for manual service collection setups, e.g., simple console apps.
Declaration
public SpectreConsoleTypeRegistrar(IServiceCollection serviceCollection, bool disposeServiceProvider)
Parameters
Type | Name | Description |
---|---|---|
IServiceCollection | serviceCollection | Service collection for registrations. |
bool | disposeServiceProvider | True to dispose the service provider on CommandApp disposal. |
SpectreConsoleTypeRegistrar(IServiceProvider, bool)
Constructs with an IServiceProvider, typically for hosted applications using builder.Build()
.
Declaration
public SpectreConsoleTypeRegistrar(IServiceProvider serviceProvider, bool disposeServiceProvider)
Parameters
Type | Name | Description |
---|---|---|
IServiceProvider | serviceProvider | Service provider for type resolution. |
bool | disposeServiceProvider |
Methods
| Edit this page View SourceBuild()
Builds a type resolver based on the provided service provider or service collection.
Declaration
public ITypeResolver Build()
Returns
Type | Description |
---|---|
ITypeResolver | Type resolver for configured services. |
Exceptions
Type | Condition |
---|---|
InvalidOperationException | Thrown if no service provider or collection is provided. |
Register(Type, Type)
Registers a service with its implementation in the service collection. Only for IServiceCollection usage.
Declaration
public void Register(Type service, Type implementation)
Parameters
Type | Name | Description |
---|---|---|
Type | service | Service type. |
Type | implementation | Implementation type. |
RegisterInstance(Type, object)
Registers a service instance in the service collection. Only for IServiceCollection usage.
Declaration
public void RegisterInstance(Type service, object implementation)
Parameters
Type | Name | Description |
---|---|---|
Type | service | Service type. |
object | implementation | Service instance. |
RegisterLazy(Type, Func<object>)
Registers a service with a factory function for deferred instantiation. Only for IServiceCollection usage.
Declaration
public void RegisterLazy(Type service, Func<object> func)
Parameters
Type | Name | Description |
---|---|---|
Type | service | Service type. |
Func<object> | func | Factory function. |
Exceptions
Type | Condition |
---|---|
ArgumentNullException | Thrown if |