Silverlight from browser questions
I am just getting started with Silverlight. I really like what I see so far. Coming from a Windows background, I have some questions. I hope someone can answer for me.
- When the Silverlight application is refreshed, is the entire XAP loaded again to the user? Or are only modified components loaded, for example in ClickOnce?
- Does Silverlight support HTTPS when using out-of-browser mode?
Thank!
+2
user70192
source
to share
2 answers
- Yes, the whole XAP is loaded again.
- The application has support for HTTPS services and content if the original page is served over HTTP or HTTPS.
+2
Michael S. Scherotter
source
to share
You can enable assembly caching in Silverlight 3 to prevent loading system dependencies every time you update your application.
Literature:
http://www.wintellect.com/CS/blogs/jprosise/archive/2009/04/06/silverlight-3-s-new-assembly-caching.aspx
http://timheuer.com/blog/archive/2009/03/18/silverlight-3-whats-new-a-guide.aspx#asmcache
+3
Jon Galloway
source
to share