Wombat.MamaMsg.updateU64 C# (CSharp) Méthode

updateU64() public méthode

Update the value of an existing U64 field. If the field does not exist it is added.
public updateU64 ( string name, ushort fid, ulong val ) : void
name string
fid ushort
val ulong
Résultat void
        public void updateU64(
			string name, 
			ushort fid,
			ulong val)
        {
            EnsurePeerCreated();
            int code = NativeMethods.mamaMsg_updateU64(nativeHandle, name, fid,val);
            CheckResultCode(code);
        }
MamaMsg