Apache.NMS.ISession.CreateBrowser(Apache.NMS.IQueue)

Here are the examples of the csharp api class Apache.NMS.ISession.CreateBrowser(Apache.NMS.IQueue) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: spring-net
Source File: CachedSession.cs
public IQueueBrowser CreateBrowser(IQueue queue)
        {
            this.transactionOpen = true;
            return target.CreateBrowser(queue);
        }