Wombat.MamaMsg.getEntitleCode C# (CSharp) 메소드

getEntitleCode() 공개 메소드

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