Ejemplo n.º 1
0
            public HandoverRequestAcknowledge Decode(BitArrayInputStream input)
            {
                var acknowledge = new HandoverRequestAcknowledge();

                acknowledge.InitDefaults();
                input.ReadBit();
                input.skipUnreadedBits();
                acknowledge.protocolIEs = new List <ProtocolIE_Field>();
                const int nBits = 0x10;
                var       num5  = input.ReadBits(nBits);

                for (var i = 0; i < num5; i++)
                {
                    var item = ProtocolIE_Field.PerDecoder.Instance.Decode(input);
                    acknowledge.protocolIEs.Add(item);
                }
                return(acknowledge);
            }
Ejemplo n.º 2
0
 public HandoverRequestAcknowledge Decode(BitArrayInputStream input)
 {
     HandoverRequestAcknowledge acknowledge = new HandoverRequestAcknowledge();
     acknowledge.InitDefaults();
     input.readBit();
     input.skipUnreadedBits();
     acknowledge.protocolIEs = new List<ProtocolIE_Field>();
     const int nBits = 0x10;
     int num5 = input.readBits(nBits);
     for (int i = 0; i < num5; i++)
     {
         ProtocolIE_Field item = ProtocolIE_Field.PerDecoder.Instance.Decode(input);
         acknowledge.protocolIEs.Add(item);
     }
     return acknowledge;
 }