我正在使用 Visual Studio 2012 并使用 Windows Phone 7.1 应用程序开发。这是一个新创建的项目。
当我使用此代码时,为什么会出现此错误?
The name 'WebRequestMethods' does not exist in the current context
代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
...
public MainPage() {
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.google.com");
request.Method = WebRequestMethods.Http.Post;
}
...
它似乎无法识别 WebRequestMethods 是 System.Net 的一部分。如果我指定 System.Net.WebRequestMethods.Http.Post,它也会失败。