Wombat.MamaMsg.getByteSize C# (CSharp) Method

getByteSize() public method

Get the size of the underlying message in bytes. Only works for tibrvMsg and wombatmsg types.
public getByteSize ( ) : int
return int
        public int getByteSize()
        {
            EnsurePeerCreated();
            int size = 0;
            int code = NativeMethods.mamaMsg_getByteSize(nativeHandle, ref size);
            CheckResultCode(code);
            return size;
        }
MamaMsg