public void DeleteDurableConsumer()

in src/main/csharp/Session.cs [171:181]


		public void DeleteDurableConsumer(string name)
		{
			try
			{
				this.xmsSession.Unsubscribe(name);
			}
			catch(Exception ex)
			{
				ExceptionUtil.WrapAndThrowNMSException(ex);
			}
		}