在我的xamarin应用程序中,我需要使用HttpClient实现Web服务。
所以我创建了测试项目&测试网络服务 - 这里没问题。
我的代码:
public async Task<string> registrationRequest()
{
HttpClient client = new HttpClient();
string response = await client.GetStringAsync(registrationURL);
return response;
}
我的问题:
测试测试应用程序后,我在我的实时项目中使用相同的代码 system.net.http找不到错误。
HttpClient - 未解决。
在我的测试项目中,我没有安装任何Nuget包。
我只是使用
using System.Net.Http;
但是在我的实时项目中,这个导入返回错误。
任何人帮助我......