我有一个发布到 API 的类,该 API 在我的单元测试中工作,但不是我的 MVC 控制器。
在测试器中,以下行工作得很好,但是在我的 MVC 应用程序中调用它时,我无法超越以下行。
public async Task<string> post( object values )
{
using (var client = new HttpClient())
{
try
{
var responseString = await address.PostJsonAsync(values).ReceiveString();
return responseString; //Never reaches this line while in MVC.
}
catch (Exception e)
{
//Console.Error.WriteLine(e.Message);
return "";
}
}
}