Wombat.MamaMsg.getBool C# (CSharp) Method

getBool() public method

Get a bool field.
public getBool ( string name, ushort fid, bool valueIfMissing ) : bool
name string
fid ushort
valueIfMissing bool
return bool
        public bool getBool(
			string name,
			ushort fid,
			bool valueIfMissing)
        {
            bool result = false;
            if (tryBool (name, fid, ref result))
                return result;
            else
                return valueIfMissing;
        }

Same methods

MamaMsg::getBool ( Wombat.MamaFieldDescriptor descriptor ) : bool
MamaMsg::getBool ( Wombat.MamaFieldDescriptor descriptor, bool valueIfMissing ) : bool
MamaMsg::getBool ( string name, ushort fid ) : bool
MamaMsg