我正在创建一个 winodws 手机,并从我的 web 应用程序中复制了一些代码,但是 HttpWebRequest 类在 web 和 windows phone 上是不同的。windows phone 的 VS2010 express 上的 HttpWebRequest 上没有 Preauthenticate 和 Media Type。我想我可以将 Mediatype 更改为 contentType。这样对吗。如何更改 PreAuthenticate?提前致谢。
有我的代码:
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(serviceUri);
//request.MediaType = "application/xml";
request.ContentType = "application/xml";
request.PreAuthenticate = true;