0

我正在使用 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,它也会失败。

4

1 回答 1

2

System.Net.WebRequestMethods.Http在 Windows Phone 的 .NET 配置文件中不可用,但根据您正在查看的文档页面,它可能并不明显。只需将其设置为字符串值“POST”。

我在我的博客文章中有一些额外的上下文:Windows 运行时-支持什么在哪里?

于 2013-01-13T04:23:32.393 回答