标签: c# .net rest azure azure-functions
我正在尝试从Azure Functions中进行REST调用。对于这些代码行:
var client = new HttpClient(); var queryString = HttpUtility.ParseQueryString(string.Empty);
我收到以下错误。
The name 'HttpUtility' does not exist in the current context
我在Azure.com中使用网络界面。
答案 0 :(得分:6)
您可能错过了对collection('name")的正确引用:
collection('name")
System.Web
请参阅Referencing External Assemblies。