Class SilverbackBuilderAddEndpointsExtensions
Adds the AddEndpoints
method to the ISilverbackBuilder.
Inheritance
System.Object
SilverbackBuilderAddEndpointsExtensions
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Microsoft.Extensions.DependencyInjection
Assembly: Silverback.Integration.dll
Syntax
public static class SilverbackBuilderAddEndpointsExtensions
Methods
| Improve this doc View sourceAddEndpoints(ISilverbackBuilder, Action<IEndpointsConfigurationBuilder>)
Adds the broker endpoints.
Declaration
public static ISilverbackBuilder AddEndpoints(this ISilverbackBuilder silverbackBuilder, Action<IEndpointsConfigurationBuilder> configureAction)
Parameters
Type | Name | Description |
---|---|---|
ISilverbackBuilder | silverbackBuilder | The ISilverbackBuilder that references the Microsoft.Extensions.DependencyInjection.IServiceCollection to add the services to. |
System.Action<IEndpointsConfigurationBuilder> | configureAction | An System.Action<T> that takes the IEndpointsConfigurationBuilder and adds the outbound and inbound endpoints. |
Returns
Type | Description |
---|---|
ISilverbackBuilder | The ISilverbackBuilder so that additional calls can be chained. |