Contour.Transport.RabbitMQ.Internal.RabbitChannel.Bind C# (CSharp) Method

Bind() public method

The bind.
public Bind ( Queue queue, Contour.Transport.RabbitMQ.Topology.Exchange exchange, string routingKey ) : void
queue Contour.Transport.RabbitMQ.Topology.Queue /// The queue. ///
exchange Contour.Transport.RabbitMQ.Topology.Exchange /// The exchange. ///
routingKey string /// The routing key. ///
return void
        public void Bind(Queue queue, Exchange exchange, string routingKey)
        {
            this.SafeNativeInvoke(n => n.QueueBind(queue.Name, exchange.Name, routingKey));
        }