Class EndpointServiceCollectionExtensions
Inheritance
Namespace: Steeltoe.Management.Endpoint.Actuators.Info
Assembly: Steeltoe.Management.Endpoint.dll
Syntax
public static class EndpointServiceCollectionExtensions : object
Methods
| Edit this page View SourceAddInfoActuator(IServiceCollection)
Adds the info actuator to the service container and configures the ASP.NET Core middleware pipeline.
Declaration
public static IServiceCollection AddInfoActuator(this IServiceCollection services)
Parameters
Type | Name | Description |
---|---|---|
IServiceCollection | services | The |
Returns
Type | Description |
---|---|
IServiceCollection | The incoming |
AddInfoActuator(IServiceCollection, Boolean)
Adds the info actuator to the service container.
Declaration
public static IServiceCollection AddInfoActuator(this IServiceCollection services, bool configureMiddleware)
Parameters
Type | Name | Description |
---|---|---|
IServiceCollection | services | The |
System.Boolean | configureMiddleware | When |
Returns
Type | Description |
---|---|
IServiceCollection | The incoming |
AddInfoContributor(IServiceCollection, Type)
Adds the specified IInfoContributor to the D/I container as a singleton service.
Declaration
public static IServiceCollection AddInfoContributor(this IServiceCollection services, Type infoContributorType)
Parameters
Type | Name | Description |
---|---|---|
IServiceCollection | services | The |
Type | infoContributorType | The type of the info contributor to add. |
Returns
Type | Description |
---|---|
IServiceCollection | The incoming |
AddInfoContributor<T>(IServiceCollection)
Adds the specified IInfoContributor to the D/I container as a singleton service.
Declaration
public static IServiceCollection AddInfoContributor<T>(this IServiceCollection services)
where T : class, IInfoContributor
Parameters
Type | Name | Description |
---|---|---|
IServiceCollection | services | The |
Returns
Type | Description |
---|---|
IServiceCollection | The incoming |
Type Parameters
Name | Description |
---|---|
T | The type of info contributor to add. |