For the complete documentation index, see llms.txt. This section of documentation is indexed by https://docs.particular.net/nservicebus/llms.txt. Here is the markdown version of this page. Markdown versions of documentation pages are available by appending .md to the page URL. Directory URLs use index.md.

Specify Endpoint Name

Component:
NServiceBus
NuGet Package:
NServiceBus 10.x

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");