Wombat.MamaMsg.getU32 C# (CSharp) Method

getU32() public method

Get a U32, unsigned 32 bit integer, field.
public getU32 ( string name, ushort fid ) : uint
name string
fid ushort
return uint
        public uint getU32(
			string name, 
			ushort fid)
        {
            EnsurePeerCreated();
            uint ret = 0;
            int code = NativeMethods.mamaMsg_getU32(nativeHandle, name, fid,ref ret);
            CheckResultCode(code);
            return ret;
        }

Same methods

MamaMsg::getU32 ( Wombat.MamaFieldDescriptor descriptor ) : uint
MamaMsg::getU32 ( Wombat.MamaFieldDescriptor descriptor, uint valueIfMissing ) : uint
MamaMsg::getU32 ( string name, ushort fid, uint valueIfMissing ) : uint
MamaMsg