/// <summary> /// 业务逻辑处理 /// </summary> /// <returns>false:中断后面的方式执行并返回Error</returns> public override bool TakeAction() { int errorCnt; ConnectHelper.SendResultToConnect(actionGetter, _userSid.Split(';'), out errorCnt); if (errorCnt > 0) { TraceLog.WriteWarn("Action101 error,UserSid:{0},errorCnt:{1}", _userSid, errorCnt); } // IsNotRespond = true; return(true); }