Description
Sample Code
==========================================
session = this.connection.CreateSession(AcknowledgementMode.Transactional);
var destination = SessionUtil.GetDestination(this.session, mailQueue);
consumer = this.session.CreateConsumer(destination);
consumer.Dispose(); // throws NotImplementedException
==========================================
And MessageConsumer.cs
==========================================
public void Dispose()
{ throw new NotImplementedException(); }==========================================
Is this component ready for to use?