Wombat.MamaMsg.updateI8 C# (CSharp) Method

updateI8() public method

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