Apache.NMS.MessageProducerExtensions.Send C# (CSharp) Method

Send() public static method

Sends the message to the given destination
public static Send ( this producer, IDestination destination, object objMessage ) : void
producer this
destination IDestination
objMessage object
return void
        public static void Send(this IMessageProducer producer, IDestination destination, object objMessage)
        {
            producer.Send(destination, producer.CreateXmlMessage(objMessage));
        }

Same methods

MessageProducerExtensions::Send ( this producer, IDestination destination, object objMessage, MsgDeliveryMode deliveryMode, MsgPriority priority, System.TimeSpan timeToLive ) : void
MessageProducerExtensions::Send ( this producer, object objMessage ) : void
MessageProducerExtensions::Send ( this producer, object objMessage, MsgDeliveryMode deliveryMode, MsgPriority priority, System.TimeSpan timeToLive ) : void
MessageProducerExtensions