in src/main/csharp/Session.cs [440:462]
public void Close()
{
lock(this)
{
if(closed)
{
return;
}
try
{
this.tibcoSession.Close();
}
catch(Exception ex)
{
ExceptionUtil.WrapAndThrowNMSException(ex);
}
finally
{
closed = true;
}
}
}