コード例 #1
0
        public void ShowDetailInfo(string id, MailItem Item)
        {
            selectItem = Item;
            var dic = new Dictionary <string, object>()
            {
                { KeyParamId, id }
            };

            YxTools.SendActionWithCacheKey(ActionName, dic, SuccessCall, YxTools.GetCacahKey(ActionName, dic));
        }
コード例 #2
0
ファイル: YxPageListView.cs プロジェクト: narakai/chessgame
        protected virtual void SendActionWithPage()
        {
            string cacaheKey = "";

            SetActionDic();
            if (ActionWithCacheKey)
            {
                cacaheKey = YxTools.GetCacahKey(ActionName, ActionParam);
            }
            YxTools.SendActionWithCacheKey(ActionName, ActionParam, UpdateView, cacaheKey);
        }