码迷,mamicode.com
首页 > Windows程序 > 详细

初识Asp.Net WebApi

时间:2018-01-26 17:13:36      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:ace   ring   ons   wan   sys   webapi   .text   asp   username   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;

namespace WebApi.Controllers
{
public class HomeController : ApiController
{
public List<UserModel> allModeList = new List<UserModel>()
{
new UserModel(){ Id=1,UserName="zhang", PassWord="123"},
new UserModel(){ Id=2,UserName="lishi", PassWord="123456"},
new UserModel(){ Id=3,UserName="wang", PassWord="1234567"}
};
[System.Web.Http.HttpPost]
public HttpResponseMessage GetAll()
{
//return allModeList.Count.ToString();
HttpResponseMessage hr = new HttpResponseMessage();
string name = "yangliu";

//List<dynamic> list = new List<dynamic> { new { name = "张三", age = 17 }, new { name = "李四", age = 15 } };
hr.Content = new StringContent(Newtonsoft.Json.JsonConvert.SerializeObject(allModeList), Encoding.UTF8, "application/json");

return hr;

}


}

public class UserModel
{
public int Id { get; set; }
public string UserName { get; set; }
public string PassWord { get; set; }
}
}

初识Asp.Net WebApi

标签:ace   ring   ons   wan   sys   webapi   .text   asp   username   

原文地址:https://www.cnblogs.com/momjs/p/8360100.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!