in src/main/csharp/Session.cs [183:197]
public IQueueBrowser CreateBrowser(IQueue queue)
{
Apache.NMS.XMS.Queue queueObj = (Apache.NMS.XMS.Queue)queue;
try
{
return XMSConvert.ToNMSQueueBrowser(this.xmsSession.CreateBrowser(
queueObj.xmsDestination));
}
catch(Exception ex)
{
ExceptionUtil.WrapAndThrowNMSException(ex);
return null;
}
}