コード例 #1
0
ファイル: RemotingServer.cs プロジェクト: lexzh/Myproject
 public byte[] Area_getAreaInfoAllExByCompress()
 {
     try
     {
         Area area = new Area(this._OnlineUserInfo.UserId);
         return CompressHelper.Compress(area.GetAreaInfoAllEx());
     }
     catch (Exception exception)
     {
         ErrorMsg msg = new ErrorMsg("RemotingServer", "Area_getAreaInfoAllExByCompress", exception.Message);
         this.m_LogHelper.WriteError(msg);
         return null;
     }
 }