Wombat.MamaMsg.getEntitleCode C# (CSharp) Method

getEntitleCode() public method

Get the entitle code for this message. The result defaults to 0 (no entitlement) if the field is not present.
public getEntitleCode ( ) : int
return int
        public int getEntitleCode()
        {
            EnsurePeerCreated();
            int result = 0;
            int code = NativeMethods.mamaMsg_getEntitleCode(nativeHandle, ref result);
            CheckResultCode(code);
            return result;
        }
MamaMsg