如何在 Windows Phone 7 上获取除 200 之外的 HTTP 状态代码?

发布于 2024-10-05 02:31:06 字数 336 浏览 3 评论 0原文

目前,在 Windows Phone 7 中,如果我访问返回 StatusCode 为 500 或除 200 OK 之外的其他内容的页面,我会收到一条消息,提示“NotFound”。在 silverlight 中,有几个选项可以处理此问题:

  1. 如果您控制 REST 服务,请使用 SilverlightFaultBehavior(不过我不这样做)
  2. 使用 HttpWebRequest.RegisterPrefix("http://", WebRequestCreator.ClientHttp);

我想知道 Windows Phone 7 是否有类似的选项。

Currently with Windows Phone 7 if I access a page that returns a StatusCode of 500 or something besides 200 OK I get a message saying the NotFound. In silverlight there are a couple options for handling this:

  1. Use SilverlightFaultBehavior if you control the REST Service (I don't though)
  2. Use HttpWebRequest.RegisterPrefix("http://", WebRequestCreator.ClientHttp);

I'm wondering if there are any options like this for the Windows Phone 7.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

难如初 2024-10-12 02:31:06

您所要做的就是捕获 WebException,并访问其中的响应。然后你可以获取状态代码、响应流等。

如果这对你没有用,请发布你正在使用的代码以及你正在尝试执行的操作 - 目前很难确切地知道你已经尝试过什么。

All you have to do is catch the WebException, and access the response within that. Then you can get at the status code, response stream etc.

If that's no use to you, please post the code you're using and what you're trying to do - it's hard to know exactly what you've tried at the moment.

各自安好 2024-10-12 02:31:06

HttpWebResponse 包含 StatusCode< /a> 属性。你不能用那个吗?

webResponse = (HttpWebResponse)webRequest.EndGetResponse(asynchronousResult);

webResponse.StatusCode;

HttpWebResponse includes a StatusCode property. Can't you use that?

webResponse = (HttpWebResponse)webRequest.EndGetResponse(asynchronousResult);

webResponse.StatusCode;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文