in src/main/csharp/Session.cs [142:152]
public void DeleteDurableConsumer(string name)
{
try
{
this.tibcoSession.Unsubscribe(name);
}
catch(Exception ex)
{
ExceptionUtil.WrapAndThrowNMSException(ex);
}
}