Wombat.MamaMsg.getBool C# (CSharp) Метод

getBool() публичный Метод

Get a bool field.
public getBool ( string name, ushort fid ) : bool
name string
fid ushort
Результат bool
        public bool getBool(
			string name,
			ushort fid)
        {
            EnsurePeerCreated();
            bool ret = false;
            int code = NativeMethods.mamaMsg_getBool(nativeHandle, name, fid,ref ret);
            CheckResultCode(code);
            return ret;
        }

Same methods

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