在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
asp.net webapi自定义输出结果类似Response.Write()
[HttpGet] public HttpResponseMessage HelloWorld() { string result = “Hello world! Time is: ” + DateTime.Now; var resp = new HttpResponseMessage(HttpStatusCode.OK); resp.Content = new StringContent(result, System.Text.Encoding.UTF8, “text/plain”); return resp; }
|
请发表评论