RabbitMQ.Client.Impl.AutorecoveringModel.BasicPublish C# (CSharp) Method

BasicPublish() public method

public BasicPublish ( string exchange, string routingKey, bool mandatory, IBasicProperties basicProperties, byte body ) : void
exchange string
routingKey string
mandatory bool
basicProperties IBasicProperties
body byte
return void
        public void BasicPublish(string exchange,
            string routingKey,
            bool mandatory,
            IBasicProperties basicProperties,
            byte[] body)
        {
            m_delegate.BasicPublish(exchange,
                routingKey,
                mandatory,
                basicProperties,
                body);
        }
AutorecoveringModel