Wombat.MamaMsg.updateBool C# (CSharp) Method

updateBool() public method

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