如何获得 Silverlight OOB 的配置文件?
我的 Web.Config
文件中有一个 Silverlight
应用程序,其中包含一些 appSettings
。现在我想让它OOB
,处理这个问题的最佳方法是什么。
在 OOB
中运行时,是否应该使用 WebClient
下载配置文件。
请问大家有什么好的方法吗?
I have a Silverlight
application with some appSettings
in my Web.Config
file. Now I want to make it OOB
, what is the best way to handle this.
Should I download config file
using WebClient
when running in OOB
.
Please suggest if you have any good method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Web.Config 中的任何“应用程序设置”仅由 Silverlight 应用程序的 Web/服务器部分使用。不是由客户端应用程序执行(除非您将它们传递给客户端)。
如果您的 Silverlight 应用程序正在运行 OOB,那么它应该没有任何区别...它仍然只是一个客户端应用程序,需要来自您的 Web 服务器的信息(如果您希望传递它们)。
基本上,你不需要改变任何东西,除非你一开始就做错了什么。 您能解释一下您的客户端应用程序需要什么样的设置吗?
Any "app settings" in a Web.Config are only used by the web/server part of your Silverlight application. Not by the client application (unless you pass them on to the client).
It should not make any difference if your Silverlight App is running OOB... It is still just a client app, requiring information from your web server (if you wish to pass them on).
Basically, you should not need to change anything, unless you are doing something wrong in the first place. Can you explain what sort of settings you are needing in your client application?