2017-05-08 67 views
1

我想通過URI將通用Windows應用程序的數據發送到休息API。如何從通用Windows應用程序中檢索Rest Api中的數據?

如果是文字,我可以解決,很容易

string WebData = wc.DownloadString("http://restapic.azurewebsites.net/WebForm1.aspx?func=dd&hodn=WW") 

但要怎麼做,如果我想傳遞的價值如int或名稱,我不知道?例如,我想在通用Windows應用程序中輸入199號文本框,然後發送它。

我可以這樣做:

string WebData = wc.DownloadString("http://restapic.azurewebsites.net/WebForm1.aspx?func=dd&hodn=WW&value="+myNumber) 

但隨後問我在此文件中的聲明....

感謝。

回答

1

您可以嘗試如下。

HttpClient client = new HttpClient(); 
client.BaseAddress = new Uri("http://localhost:8880/"); 
HttpResponseMessage response = client.GetAsync("api/product/1").Result; 
相關問題