Getting Started
Architecture
NServiceBus
Transports
Persistence
ServiceInsight
ServicePulse
ServiceControl
Monitoring
Samples

Specify Endpoint Name

Component: NServiceBus
NuGet Package: NServiceBus (7.x)
Standard support for version 7.x of NServiceBus has expired. For more information see our Support Policy.

Define the endpoint name at initialization time:

var endpointConfiguration = new EndpointConfiguration("MyEndpoint");

See also:

Input queue

By default, the endpoint's input queue name is the same as the endpoint's name.

The input queue name can be overridden:

endpointConfiguration.OverrideLocalAddress("MyEndpoint.Messages");