Wombat.MamaMsg.updateU8 C# (CSharp) Method

updateU8() public method

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