Wombat.MamaMsg.updatePrice C# (CSharp) Method

updatePrice() public method

Update a MAMA price field.
public updatePrice ( string name, ushort fid, MamaPrice val ) : void
name string
fid ushort
val MamaPrice
return void
        public void updatePrice(
			string name,
			ushort fid,
			MamaPrice val)
        {
            EnsurePeerCreated();
            IntPtr put = val.NativeHandle;
            int code = NativeMethods.mamaMsg_updatePrice(nativeHandle, name, fid,put);
            CheckResultCode(code);
        }
MamaMsg