Wombat.MamaMsg.getU16 C# (CSharp) Method

getU16() public method

Get a U16, unsigned 16 bit integer, field.
public getU16 ( string name, ushort fid ) : ushort
name string
fid ushort
return ushort
        public ushort getU16(
			string name,
			ushort fid)
        {
            EnsurePeerCreated();
            ushort ret = 0;
            int code = NativeMethods.mamaMsg_getU16(nativeHandle, name, fid,ref ret);
            CheckResultCode(code);
            return ret;
        }

Same methods

MamaMsg::getU16 ( Wombat.MamaFieldDescriptor descriptor ) : ushort
MamaMsg::getU16 ( Wombat.MamaFieldDescriptor descriptor, ushort valueIfMissing ) : ushort
MamaMsg::getU16 ( string name, ushort fid, ushort valueIfMissing ) : ushort
MamaMsg