C# Class NServiceBus.Transport.QueueBindings

Contains information about queues this endpoint is using.
Datei anzeigen Open project: Particular/NServiceBus

Public Methods

Method Description
BindReceiving ( string address ) : void

Declares that this endpoint will be using queue with address address for receiving.

BindSending ( string transportAddress ) : void

Declares that this endpoint will be using queue with address transportAddress for sending.

Method Details

BindReceiving() public method

Declares that this endpoint will be using queue with address address for receiving.
public BindReceiving ( string address ) : void
address string The address of the queue.
return void

BindSending() public method

Declares that this endpoint will be using queue with address transportAddress for sending.
public BindSending ( string transportAddress ) : void
transportAddress string The address of the queue.
return void