Wombat.MamaMsg.updateI64 C# (CSharp) Method

updateI64() public method

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