예제 #1
0
파일: News.cs 프로젝트: kangwl/DotNet.Mix
 public string Add(HttpContext context) {
    ApiInfo info=new ApiInfo();
     return "news add";
 }
예제 #2
0
파일: News.cs 프로젝트: kangwl/DotNet.Mix
 public string GetList(HttpContext context) {
     ApiInfo exception = new ApiInfo(2, "news list err");
     string extjson = Common.json.JsonHelper<ApiInfo>.Serialize2Object(exception);
     return extjson;
 }
예제 #3
0
파일: News.cs 프로젝트: kangwl/xk
 public string Add(HttpRequest request) {
    ApiInfo info=new ApiInfo();
     return "news add";
 }