Wombat.MamaMsg.getSeqNum C# (CSharp) Method

getSeqNum() public method

Return the sequence
public getSeqNum ( ) : uint
return uint
        public uint getSeqNum()
        {
            EnsurePeerCreated();
            uint seqNum = 0;
            int code = NativeMethods.mamaMsg_getSeqNum(nativeHandle,ref seqNum);
            CheckResultCode(code);
            return seqNum;
        }
MamaMsg