Class HostApplicationBuilderExtensions
Inheritance
Namespace: Steeltoe.Bootstrap.AutoConfiguration
Assembly: Steeltoe.Bootstrap.AutoConfiguration.dll
Syntax
public static class HostApplicationBuilderExtensions : object
Methods
| Edit this page View SourceAddSteeltoe(IHostApplicationBuilder)
Automatically configures Steeltoe packages that have been added to your project as NuGet references.
Declaration
public static IHostApplicationBuilder AddSteeltoe(this IHostApplicationBuilder builder)
Parameters
Type | Name | Description |
---|---|---|
IHostApplicationBuilder | builder | The |
Returns
Type | Description |
---|---|
IHostApplicationBuilder | The incoming |
AddSteeltoe(IHostApplicationBuilder, ILoggerFactory)
Automatically configures Steeltoe packages that have been added to your project as NuGet references.
Declaration
public static IHostApplicationBuilder AddSteeltoe(this IHostApplicationBuilder builder, ILoggerFactory loggerFactory)
Parameters
Type | Name | Description |
---|---|---|
IHostApplicationBuilder | builder | The |
ILoggerFactory | loggerFactory | Used for internal logging. Pass |
Returns
Type | Description |
---|---|
IHostApplicationBuilder | The incoming |
AddSteeltoe(IHostApplicationBuilder, IReadOnlySet<String>)
Automatically configures Steeltoe packages that have been added to your project as NuGet references.
Declaration
public static IHostApplicationBuilder AddSteeltoe(this IHostApplicationBuilder builder, IReadOnlySet<string> assemblyNamesToExclude)
Parameters
Type | Name | Description |
---|---|---|
IHostApplicationBuilder | builder | The |
IReadOnlySet<System.String> | assemblyNamesToExclude | The set of assembly names to exclude from autoconfiguration. For ease of use, select from the constants in SteeltoeAssemblyNames. |
Returns
Type | Description |
---|---|
IHostApplicationBuilder | The incoming |
AddSteeltoe(IHostApplicationBuilder, IReadOnlySet<String>, ILoggerFactory)
Automatically configures Steeltoe packages that have been added to your project as NuGet references.
Declaration
public static IHostApplicationBuilder AddSteeltoe(this IHostApplicationBuilder builder, IReadOnlySet<string> assemblyNamesToExclude, ILoggerFactory loggerFactory)
Parameters
Type | Name | Description |
---|---|---|
IHostApplicationBuilder | builder | The |
IReadOnlySet<System.String> | assemblyNamesToExclude | The set of assembly names to exclude from autoconfiguration. For ease of use, select from the constants in SteeltoeAssemblyNames. |
ILoggerFactory | loggerFactory | Used for internal logging. Pass |
Returns
Type | Description |
---|---|
IHostApplicationBuilder | The incoming |