Пример #1
0
 public byte[] Area_getAreaInfoAllByCompress()
 {
     try
     {
         Area area = new Area(this._OnlineUserInfo.UserId);
         return CompressHelper.Compress(area.GetAreaInfoAll());
     }
     catch (Exception exception)
     {
         ErrorMsg msg = new ErrorMsg("RemotingServer", "getAllAreaInfosByParentId", exception.Message);
         this.m_LogHelper.WriteError(msg);
         return null;
     }
 }