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

C# 后台获取WebApi 方法

时间:2016-06-03 21:17:36      阅读:1056      评论:0      收藏:0      [点我收藏+]

标签:

 

以下是方法 返货json数据 代码都有注释

         /// <summary>
        /// 请求webpapi
        /// </summary>
        /// <param name="url">地址</param>
        /// <returns>json字符串</returns>
        public static string GetJosn(string url)
        {
            string result = "";
            using (var client = new System.Net.Http.HttpClient())
            {
                //通过客服端地址访问
                Uri bUrl= client.BaseAddress = new Uri(url);
                //序列化成json
                var requestJson = JsonConvert.SerializeObject(bUrl);
                //创建一个http 带正文和内容
                HttpContent httpContent = new StringContent(requestJson);
                //设置数据格式为json
                httpContent.Headers.ContentType = new MediaTypeHeaderValue("application/json");
                //异步请求并将内容写入文件流中 返回字符串
                result = client.PostAsync("api/Product/AddProduct", httpContent).Result.Content.ReadAsStringAsync().Result;

            }
            return result;
        }

或则参考地址 http://www.2cto.com/kf/201408/326364.html

 

C# 后台获取WebApi 方法

标签:

原文地址:http://www.cnblogs.com/louby/p/5557553.html

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