ASP.NET延遲調(diào)用或多次調(diào)用第三方Web?API服務(wù)
本篇體驗(yàn)使用HttpClient消費(fèi)ASP.NET Web API服務(wù),例子比較簡(jiǎn)單。
依次點(diǎn)擊"文件","新建","項(xiàng)目"。
選擇"ASP.NET Web API"項(xiàng)目。
在Models文件夾下創(chuàng)建Person.cs類。
    public class Person
    {
        public int Id { get; set; }
        public string FirstName { get; set; }
        public string LastName { get; set; }
    }在Controllers文件夾下創(chuàng)建一個(gè)空的PersonController。
    public class PersonController : ApiController
    {
    }創(chuàng)建一個(gè)符合管理的方法GetAllPersons。
    public class PersonController : ApiController
    {
        public IEnumerable<Person> GetAllPersons()
        {
            return new List<Person>
            {
                new Person(){Id = 1, FirstName = "jack", LastName = "li"},
                new Person(){Id = 2, FirstName = "darren", LastName = "ji"},
                new Person(){Id = 3, FirstName = "sunny", LastName = "su"}
            };
        }
    }在瀏覽器中輸入:
http://localhost:2497/api/Person
http://localhost:2497/api/Person/AllPersons
都可以獲取到數(shù)據(jù)。
在解決方案下創(chuàng)建一個(gè)控制臺(tái)應(yīng)用程序。
在控制臺(tái)下引用System.Net,并編寫(xiě)如下:
        static void Main(string[] args)
        {
            using (WebClient proxy = new WebClient())
            {
                var response = proxy.DownloadString("http://localhost:2497/api/Person");
                Console.WriteLine(response);
                Console.ReadKey();
            }
        }把控制臺(tái)程序設(shè)置為啟動(dòng)項(xiàng)。點(diǎn)擊"啟動(dòng)"。

如果想獲取xml格式,可以設(shè)置WebClient的Headers屬性。
代碼修改如下:
        static void Main(string[] args)
        {
            using (WebClient proxy = new WebClient())
            {
                proxy.Headers.Add(HttpRequestHeader.Accept, "application/xml");
                var response = proxy.DownloadString("http://localhost:2497/api/Person");
                Console.WriteLine(response);
                Console.ReadKey();
            }
        }
WebClient用起來(lái)似乎也不錯(cuò),不過(guò),HttpClient具有更豐富的API。HttpClient把接收的信息封裝在HttpResponseMessage類中,把發(fā)出請(qǐng)求的信息封裝到HttpRequestMessage中。
在控制臺(tái)應(yīng)用程序引用如下:
System.Net.Http.dll
System.Net.Http.Formatting.dll
編寫(xiě)如下:
        static void Main(string[] args)
        {
            Console.WriteLine("獲取ASP.NET Web API服務(wù)內(nèi)容如下:");
            HttpClient proxy = new HttpClient();
            proxy.GetAsync("http://localhost:2497/api/Person").ContinueWith((previous) =>
            {
                HttpResponseMessage response = previous.Result;
                response.Content.ReadAsStringAsync().ContinueWith((a) =>
                {
                    foreach (var item in a.Result)
                    {
                        Console.WriteLine(item.ToString());
                    }
                });
            });
            
            Console.ReadKey(true);
        }以上就是創(chuàng)建簡(jiǎn)單的ASP.NET Web API服務(wù),以及使用WebClient和HttpClient消費(fèi)服務(wù)的簡(jiǎn)單例子。
到此這篇關(guān)于ASP.NET延遲調(diào)用或多次調(diào)用第三方Web API服務(wù)的文章就介紹到這了。希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
 .NET實(shí)現(xiàn)Repeater控件+AspNetPager控件分頁(yè)
本文給大家分享的2個(gè)示例,演示AspNetPager最基本的功能,幫助您認(rèn)識(shí)AspNetPager分頁(yè)控件及了解它的工作原理。有需要的小伙伴可以參考下2015-11-11
 asp.net中GridView和DataGrid相同列合并實(shí)現(xiàn)代碼
asp.net中GridView和DataGrid相同列合并實(shí)現(xiàn)代碼,需要的朋友可以參考下2012-10-10
 一個(gè)基于Asp.Net MVC的權(quán)限方案
最近這段時(shí)間博客園有幾位同學(xué)在探討通用的權(quán)限方案,偶閑來(lái)無(wú)事,也來(lái)湊湊熱鬧,下面簡(jiǎn)單說(shuō)一下我的簡(jiǎn)單解決方案,基于AOP的。由于使用了Asp.Net MVC 開(kāi)發(fā),可能需要先對(duì)MVC有些了解,思路都是差不多的。2010-02-02
 C# 沒(méi)有動(dòng)態(tài)的數(shù)組,可以用arraylist或list取代
C#里沒(méi)有動(dòng)態(tài)的數(shù)組,只能用arraylist或list取代。2009-06-06

