Wombat.MamaMsg.getByteSize C# (CSharp) Метод

getByteSize() публичный Метод

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