我是编程初学者。我想接收并显示响应标头,我尝试过http://msdn.microsoft.com/ru-ru/library/system.net.httpwebresponse.headers.aspx - 它有效。如何在 Windows phone 7 Silverlight 中接收和显示(例如到文本框)标题?你能帮我写代码吗?
问问题
82 次
1 回答
0
您可以通过以下方式显示它们:
var str = string.Empty;
for(int i=0; i < myHttpWebResponse.Headers.Count; ++i)
{
str+= string.Format("\nHeader Name:{0}, Value :{1}",myHttpWebResponse.Headers.Keys[i],myHttpWebResponse.Headers[i]);
}
MessageBox.Show(str);
无论如何,为了测试我会使用调试器。
MessageBox的一些方法。
于 2013-03-10T21:00:25.837 回答