コード例 #1
0
ファイル: LLRPParam.cs プロジェクト: ajeck/impinj-reader-app
        public static PARAM_ConnectionCloseEvent FromXmlNode(XmlNode node)
        {
            string val;
            PARAM_ConnectionCloseEvent param = new PARAM_ConnectionCloseEvent();


            return param;
        }
コード例 #2
0
ファイル: LLRPParam.cs プロジェクト: ajeck/impinj-reader-app
        public new static PARAM_ConnectionCloseEvent FromBitArray(ref BitArray bit_array, ref int cursor, int length)
        {
            if (cursor >= length) return null;

            int field_len = 0;
            object obj_val;
            int parameter_len = 0;
            ArrayList param_list = new ArrayList();

            PARAM_ConnectionCloseEvent param = new PARAM_ConnectionCloseEvent();

            int param_type = 0;

            if (bit_array[cursor]) param.tvCoding = true;
            if (param.tvCoding)
            {
                cursor++;
                param_type = (int)(UInt64)Util.CalculateVal(ref bit_array, ref cursor, 7);

                if (param_type != param.TypeID)
                {
                    cursor -= 8;
                    return null;
                }
            }
            else
            {
                cursor += 6;
                param_type = (int)(UInt64)Util.CalculateVal(ref bit_array, ref cursor, 10);

                if (param_type != param.TypeID)
                {
                    cursor -= 16;
                    return null;
                }
                param.length = (UInt16)(int)Util.DetermineFieldLength(ref bit_array, ref cursor);
            }


            return param;
        }