Ejemplo n.º 1
0
 public SystemTimeInfoCDMA2000 Decode(BitArrayInputStream input)
 {
     var ocdma = new SystemTimeInfoCDMA2000();
     ocdma.InitDefaults();
     ocdma.cdma_EUTRA_Synchronisation = input.ReadBit() == 1;
     ocdma.cdma_SystemTime = cdma_SystemTime_Type.PerDecoder.Instance.Decode(input);
     return ocdma;
 }
Ejemplo n.º 2
0
            public SystemTimeInfoCDMA2000 Decode(BitArrayInputStream input)
            {
                var ocdma = new SystemTimeInfoCDMA2000();

                ocdma.InitDefaults();
                ocdma.cdma_EUTRA_Synchronisation = input.ReadBit() == 1;
                ocdma.cdma_SystemTime            = cdma_SystemTime_Type.PerDecoder.Instance.Decode(input);
                return(ocdma);
            }