in src/main/csharp/MapMessage.cs [206:217]
public bool GetBool(string key)
{
try
{
return this.tibcoMapMessage.GetBoolean(key);
}
catch(Exception ex)
{
ExceptionUtil.WrapAndThrowNMSException(ex);
return false;
}
}