当前位置: 首页>>代码示例>>C#>>正文


C# ReturnValue.GetInt方法代码示例

本文整理汇总了C#中ReturnValue.GetInt方法的典型用法代码示例。如果您正苦于以下问题:C# ReturnValue.GetInt方法的具体用法?C# ReturnValue.GetInt怎么用?C# ReturnValue.GetInt使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ReturnValue的用法示例。


在下文中一共展示了ReturnValue.GetInt方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: AddTag

 /// <summary>
 /// 添加标签信息
 /// </summary>
 /// <param name="tagNamestr"></param>
 /// <param name="tagType"></param>
 /// <returns></returns>
 public ReturnValue AddTag(string tagNamestr, int tagType)
 {
     string[] tags = tagNamestr.Split(new char[] { ' ', ',', '-', ';' });
     ReturnValue retValue = new ReturnValue();
     using (TagInfoDal dal = new TagInfoDal())
     {
         foreach (string item in tags)
         {
             if (dal.AddTag(item, tagType))
             {
                 retValue.PutValue("ok", retValue.GetInt("ok") + 1);
             }
             else
             {
                 retValue.PutValue("error", retValue.GetInt("error") + 1);
             }
         }
     }
     log.Info(string.Format("Add Tags : ok {0} ,error {1}", retValue.GetInt("ok"), retValue.GetInt("error")));
     return retValue;
 }
开发者ID:fengpb,项目名称:CodeNote,代码行数:27,代码来源:TagInfoManager.cs

示例2: Delete

        public ReturnValue Delete(string ids)
        {
            ReturnValue retValue = new ReturnValue();

            string[] categoryIdArr = ids.Split(new Char[] { ',' });
            using (CategoryDal dal = new CategoryDal())
            {
                foreach (string item in categoryIdArr)
                {
                    if (dal.Delete(item))
                    {
                        retValue.PutValue("ok", retValue.GetInt("ok"));
                    }
                    else
                    {
                        retValue.PutValue("error", retValue.GetInt("error"));
                    }
                }
            }
            if (retValue.GetInt("error") != 0)
            {
                retValue.IsExists = false;
                retValue.Message = string.Format("删除分类失败,成功{0},失败{1}!", retValue.GetInt("ok"), retValue.GetInt("error"));
            }
            else
            {
                retValue.IsExists = true;
                retValue.Message = "删除分类成功!";
                ClearCache();//清除缓存
            }
            return retValue;
        }
开发者ID:fengpb,项目名称:CodeNote,代码行数:32,代码来源:CategoryManager.cs


注:本文中的ReturnValue.GetInt方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。