Class SpectreConsoleTypeResolver
Resolves types from an IServiceProvider, and optionally disposes it.
Inherited Members
Namespace: Coree.NETStandard.SpectreConsole
Assembly: Coree.NETStandard.dll
Syntax
public sealed class SpectreConsoleTypeResolver : ITypeResolver, IDisposable
Constructors
| Edit this page View SourceSpectreConsoleTypeResolver(IServiceProvider, bool)
Initializes with a specified service provider.
Declaration
public SpectreConsoleTypeResolver(IServiceProvider provider, bool DisposeServiceProvider)
Parameters
Type | Name | Description |
---|---|---|
IServiceProvider | provider | Service provider for type resolution. |
bool | DisposeServiceProvider | True to dispose the service provider on disposal. |
Methods
| Edit this page View SourceDispose()
Disposes the service provider if disposable.
Declaration
public void Dispose()
Resolve(Type?)
Resolves a service of the specified type.
Declaration
public object? Resolve(Type? type)
Parameters
Type | Name | Description |
---|---|---|
Type | type | Service type; returns null if type is null. |
Returns
Type | Description |
---|---|
object | Service object or null if not found. |
Implements
Spectre.Console.Cli.ITypeResolver