Wombat.MamaMsg.getNumFields C# (CSharp) Method

getNumFields() public method

Returns the total number of fields in the message. Sub-messages count as a single field.
public getNumFields ( ) : int
return int
        public int getNumFields()
        {
            EnsurePeerCreated();
            int num = 0;
            int code = NativeMethods.mamaMsg_getNumFields(nativeHandle,ref num);
            CheckResultCode(code);
            return num;
        }
MamaMsg