public void Close()

in src/main/csharp/MessageProducer.cs [357:379]


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

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