Wombat.MamaMsg.addMsg C# (CSharp) Method

addMsg() public method

Add a MamaMsg to the msg
public addMsg ( string name, ushort fid, MamaMsg val ) : void
name string
fid ushort
val MamaMsg
return void
        public void addMsg(string name, ushort fid, MamaMsg val)
        {
            EnsurePeerCreated();
            IntPtr put = val.NativeHandle;
            int code = NativeMethods.mamaMsg_addMsg(nativeHandle, name, fid, put);
            CheckResultCode(code);
        }
MamaMsg