Class ReflectionServiceProviderExtensions
Provides an extension method for IServiceProvider to retrieve all services currently registered. This functionality aids in accessing service-related information, useful for debugging or service analysis purposes.
Inherited Members
Namespace: Coree.NETStandard.Extensions.Reflection.ServiceProvider
Assembly: Coree.NETStandard.dll
Syntax
public static class ReflectionServiceProviderExtensions
Methods
| Edit this page View SourceGetRegisteredServices(IServiceProvider)
Retrieves a list of all service descriptors registered in the service provider. This method utilizes reflection to access internal properties of the service provider, which could be subject to change in future .NET versions.
Declaration
public static List<ServiceDescriptor> GetRegisteredServices(this IServiceProvider serviceProvider)
Parameters
Type | Name | Description |
---|---|---|
IServiceProvider | serviceProvider | The service provider instance. |
Returns
Type | Description |
---|---|
List<ServiceDescriptor> | A list of ServiceDescriptor objects representing all registered services. |
Exceptions
Type | Condition |
---|---|
Exception | Throws an exception if internal properties cannot be accessed. |