WebRequest 不包含 Windows 10 通用应用的“GetResponse”定义

本文关键字:GetResponse 定义 应用 包含 Windows WebRequest | 更新日期: 2023-09-27 18:36:11

我在GitHub上下载了一个控制台应用程序并且工作正常。但我想将此 C# 控制台应用程序转换为通用 Windows 10 应用程序。

Visual Studio 上的错误:Web Request does not contain a definition for...

这是代码:

        private AccessTokenInfo HttpPost(string accessUri, string requestDetails)
    {
        //Prepare OAuth request 
        WebRequest webRequest = WebRequest.Create(accessUri);
        webRequest.ContentType = "application/x-www-form-urlencoded";
        webRequest.Method = "POST";
        byte[] bytes = Encoding.ASCII.GetBytes(requestDetails);
        webRequest.ContentLength = bytes.Length;
        using (Stream outputStream = webRequest.GetRequestStream())
        {
            outputStream.Write(bytes, 0, bytes.Length);
        }
        using (WebResponse webResponse = webRequest.GetResponse())
        {
            DataContractJsonSerializer serializer = new DataContractJsonSerializer(typeof(AccessTokenInfo));
            //Get deserialized object from JSON stream
            AccessTokenInfo token = (AccessTokenInfo)serializer.ReadObject(webResponse.GetResponseStream());
            return token;
        }
    }

基本上我在这 3 个函数上出现错误:

webRequest.ContentLength
webRequest.GetRequestStream()
webRequest.GetResponse()

这是错误的图像:出现错误的图片:"不包含定义"

补充评论:我在 GitHub 上读到了一些类似的问题,似乎我需要像这样创建一个 AsyncResult

这是一些类似问题的答案(我不知道如何将其应用于我的问题):

  /**  In case it is a Windows Store App (and not WPF) there is no synchronous GetResponse method in class WebResponse.
 You have to use the asynchronous GetResponseAsync instead, e.g. like this: **/
using (var response = (HttpWebResponse)(await request.GetResponseAsync()))
{
    // ...
}

提前感谢!

WebRequest 不包含 Windows 10 通用应用的“GetResponse”定义

在您链接的答案中,有一条带有实际答案的注释:

如果它是Windows应用商店应用程序(而不是WPF),则没有 类 WebResponse 中的同步 GetResponse 方法

你必须在 UWP 应用中使用异步方法,因为它们不再具有同步 cal 来提高用户界面性能(不再挂起 UI,因为它在同一线程上执行 Web 请求)

您的代码应采用以下形式:

HttpWebResponse response = await webrequest.GetResponseAsync();

以下是有关 async/await 以及如何使用它的更多信息:https://msdn.microsoft.com/en-us/library/hh191443.aspx