public bool Contains()

in src/main/csharp/MapMessage.cs [60:71]


		public bool Contains(object key)
		{
			try
			{
				return this.tibcoMapMessage.ItemExists(key.ToString());
			}
			catch(Exception ex)
			{
				ExceptionUtil.WrapAndThrowNMSException(ex);
				return false;
			}
		}