public void Close()

in src/main/csharp/QueueBrowser.cs [76:98]


		public void  Close()
		{
			lock(this)
			{
				if(closed)
				{
					return;
				}

				try
				{
					this.tibcoQueueBrowser.Close();
				}
				catch(Exception ex)
				{
					ExceptionUtil.WrapAndThrowNMSException(ex);
				}
				finally
				{
					closed = true;
				}
			}
		}