你好我有一个错误:“尝试访问该方法失败:System.IO.File.Exists(System.String)”
我必须注意,这条线有一个外部网址
If File.Exists("http://www.demo.com/demo.xml") Then
blah
end if
在我第一次尝试时它起作用了,但现在它似乎有问题:S 它没有意义!
你好我有一个错误:“尝试访问该方法失败:System.IO.File.Exists(System.String)”
我必须注意,这条线有一个外部网址
If File.Exists("http://www.demo.com/demo.xml") Then
blah
end if
在我第一次尝试时它起作用了,但现在它似乎有问题:S 它没有意义!
听起来您应该WebClient
改为发出网络请求(例如 with )。
您正在使用File.Exists
并向其传递 URL。File.Exists
用于文件系统路径。事实上,您根本不打算File.Exists
在 Windows Phone 7 上打电话。如有疑问,请查阅文档:
此成员在 Silverlight for Windows Phone 上具有 SecurityCriticalAttribute 属性,因为该属性存在于 Silverlight 3 中。此属性将此成员限制为内部使用。使用此成员的应用程序代码会引发 MethodAccessException。