Wombat.MamaMsg.updateU32 C# (CSharp) Method

updateU32() public method

Update the value of an existing U32 field. If the field does not exist it is added.
public updateU32 ( string name, ushort fid, uint val ) : void
name string
fid ushort
val uint
return void
        public void updateU32(
			string name, 
			ushort fid,
			uint val)
        {
            EnsurePeerCreated();
            int code = NativeMethods.mamaMsg_updateU32(nativeHandle, name, fid,val);
            CheckResultCode(code);
        }
MamaMsg