如何在 Windows Phone 7 上获取除 200 之外的 HTTP 状态代码?
目前,在 Windows Phone 7 中,如果我访问返回 StatusCode 为 500 或除 200 OK 之外的其他内容的页面,我会收到一条消息,提示“NotFound”。在 silverlight 中,有几个选项可以处理此问题:
- 如果您控制 REST 服务,请使用 SilverlightFaultBehavior(不过我不这样做)
- 使用
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:
- Use SilverlightFaultBehavior if you control the REST Service (I don't though)
- Use
HttpWebRequest.RegisterPrefix("http://", WebRequestCreator.ClientHttp);
I'm wondering if there are any options like this for the Windows Phone 7.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您所要做的就是捕获 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.
HttpWebResponse 包含 StatusCode< /a> 属性。你不能用那个吗?
HttpWebResponse includes a StatusCode property. Can't you use that?