Beispiel #1
0
 public override void unmarshall(ByteArray _arg1)
 {
     base.unmarshall(_arg1);
     topSid      = popInt();
     totalCount  = popInt();
     myhashMap_0 = popHashMapKIVI();
 }
Beispiel #2
0
 public override void unmarshall(ByteArray _arg1)
 {
     base.unmarshall(_arg1);
     topSid = popInt();
     subSid = popInt();
     pos    = popInt();
     users  = popHashMapKIVP <POnlineUser>();
 }
Beispiel #3
0
        public MYHashMap popHashMapKSVS()
        {
            MYHashMap mYHashMap = new MYHashMap();
            uint      num       = popInt();

            for (uint num2 = 0u; num2 < num; num2++)
            {
                mYHashMap.put(popShort().ToString(), popBytes());
            }
            return(mYHashMap);
        }
Beispiel #4
0
        public MYHashMap popHashMapKBVS()
        {
            MYHashMap mYHashMap = new MYHashMap();
            uint      num       = popInt();

            for (int i = 0; i < num; i++)
            {
                mYHashMap.put(popByte().ToString(), popBytes());
            }
            return(mYHashMap);
        }
Beispiel #5
0
        public MYHashMap popHashMapKIVP <T>() where T : ProtoBase, new()
        {
            MYHashMap mYHashMap = new MYHashMap();
            uint      num       = popInt();

            for (int i = 0; i < num; i++)
            {
                mYHashMap.put(popInt().ToString(), popProto <T>());
            }
            return(mYHashMap);
        }
 public override void unmarshall(ByteArray _arg1)
 {
     base.unmarshall(_arg1);
     topSid = popInt();
     users  = popHashMapKIVP <POnlineUser>();
     if (_arg1.bytesAvailable > 0)
     {
         type   = popInt();
         leaves = popIntArray();
     }
 }
Beispiel #7
0
        public void pushHashMapKSVS(MYHashMap _arg1)
        {
            uint num = (uint)_arg1.size();

            pushInt(num);
            List <string> list  = _arg1.keys();
            List <object> list2 = _arg1.values();

            for (uint num2 = 0u; num2 < num; num2++)
            {
                pushShort((uint)Convert.ToInt32(list[(int)num2]));
                pushBytes((byte[])list2[(int)num2]);
            }
        }
Beispiel #8
0
 public CExtentProp()
 {
     m_mapExtentProp = new MYHashMap();
 }
Beispiel #9
0
 public PCS_GetAPInfo()
 {
     m_uUid         = new MyUInt64(0u, 0u);
     m_uForbidIp    = new List <uint>();
     m_mapApSpecReq = new MYHashMap();
 }
Beispiel #10
0
 public override void unmarshall(ByteArray _arg1)
 {
     base.unmarshall(_arg1);
     m_mapExtentProp = popHashMapKIVS();
 }
Beispiel #11
0
 public Properties()
 {
     props = new MYHashMap();
 }
Beispiel #12
0
 public override void unmarshall(ByteArray _arg1)
 {
     base.unmarshall(_arg1);
     props = popHashMapKSVS();
 }
Beispiel #13
0
 public PJoinChannelReq()
 {
     props = new MYHashMap();
 }
 public PServiceUInfoExLoginReq()
 {
     type2ValueMap = new MYHashMap();
 }
Beispiel #15
0
 public override void unmarshall(ByteArray _arg1)
 {
     base.unmarshall(_arg1);
     IntProp_t = popHashMapKBVI();
     StrProp_t = popHashMapKBVS();
 }