我一直在尝试构建一个Web服务来来回同步一些数据我已经建立了一个同步项目,当我通过我的wpf项目运行它似乎工作但不是没有。
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Net.Http;
using System.Net.Http.Headers;
using QAQC_DataCommon.Models;
namespace TestApp
{
class Program
{
static void Main(string[] args)
{
Gettasks();
}
public static async void Gettasks()
{
using (var client = new HttpClient())
{
client.BaseAddress = new Uri("http://localhost/QAQC_SyncWebService/");
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
try
{
var response = await client.GetAsync("Tasks/?username=XXXXXX&LastUpdated=1/1/15");
if (response.IsSuccessStatusCode)
{
List<QaqcRow> ls = await response.Content.ReadAsAsync<List<QaqcRow>>();
foreach (QaqcRow qaqcRow in ls)
{
Debug.WriteLine(qaqcRow.GetValue("BusinessUnit"));
}
}
}
catch (Exception)
{
throw;
}
}
}
}
}
当它退出时,它会响应Var响应=等待线。没有例外或任何警告,如果我正在调试它就停止。
我的输出是:
The thread 0x1414 has exited with code 259 (0x103).
The thread 0x16e4 has exited with code 259 (0x103).
The program '[9656] TestApp.vshost.exe' has exited with code 0 (0x0).
我的网络服务中的控制器如下:
public IEnumerable<QaqcRow> Index(string username, string lastUpdated)
{
return GetFilteredList(username, lastUpdated).OrderBy(x => x.GetValue("FormId"));
}
我可以通过链接手动转到web服务并获取数据,但是当我使用httpclient时它就会死掉。
答案 0 :(得分:3)
它过早地退出程序,因为它不会等到执行结束我猜。 (参见例如https://stackoverflow.com/a/15149840/5296568)
更改
public static async void Gettasks()
要
public static async Task Gettasks()
然后等待执行结束。
static async void Main(string[] args)
{
await Gettasks();
}
编辑:嗯,所以事实证明Main
不能是异步的。所以也许现在只需确认通过阻塞线程就可以正确调用此方法直到最后。
static void Main(string[] args)
{
Gettasks();
Console.ReadLine(); //just don't press enter immedietly :)
}