Table of Contents

Interface ISendEndpointProvider

Namespace
MassTransit
Assembly
MassTransit.Abstractions.dll

The Send Endpoint Provider is used to retrieve endpoints using addresses. The interface is available both at the bus and within the context of most message receive handlers, including the consume context, saga context, consumer context, etc. The most local provider should be used to ensure message continuity is maintained.

public interface ISendEndpointProvider : ISendObserverConnector
Inherited Members

Methods

GetSendEndpoint(Uri)

Return the send endpoint for the specified address

Task<ISendEndpoint> GetSendEndpoint(Uri address)

Parameters

address Uri

The endpoint address

Returns

Task<ISendEndpoint>

The send endpoint