<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Silverlight for the Enterprises - where are my dlls?</title><link>http://blogs.msdn.com/hanuk/archive/2008/05/19/silverlight-for-the-enterprises-where-are-my-dlls.aspx</link><description>I recently spoke to a customer who wanted to know if Silverlight extracts the dlls (from the XAP) and stores them in the temp directories before building the type system in memory. The reason for the question was that they have a monitoring system that</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Discount Airline Tickets &amp;raquo; Silverlight for the Enterprises - where are my dlls?</title><link>http://blogs.msdn.com/hanuk/archive/2008/05/19/silverlight-for-the-enterprises-where-are-my-dlls.aspx#8520000</link><pubDate>Tue, 20 May 2008 02:27:52 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8520000</guid><dc:creator>Discount Airline Tickets &amp;raquo; Silverlight for the Enterprises - where are my dlls?</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://www.travel-hilarity.com/travel-airline-tickets/?p=1270"&gt;http://www.travel-hilarity.com/travel-airline-tickets/?p=1270&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: Silverlight for the Enterprises - where are my dlls?</title><link>http://blogs.msdn.com/hanuk/archive/2008/05/19/silverlight-for-the-enterprises-where-are-my-dlls.aspx#8523920</link><pubDate>Tue, 20 May 2008 20:13:09 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8523920</guid><dc:creator>Jeff Handley</dc:creator><description>&lt;p&gt;With Silverlight using the browser cache, the DLLs could be left on disk within the temporary internet files folder, correct?&lt;/p&gt;
</description></item><item><title>re: Silverlight for the Enterprises - where are my dlls?</title><link>http://blogs.msdn.com/hanuk/archive/2008/05/19/silverlight-for-the-enterprises-where-are-my-dlls.aspx#8524103</link><pubDate>Tue, 20 May 2008 20:56:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8524103</guid><dc:creator>hanuk</dc:creator><description>&lt;p&gt;You will only see .XAP file on the file system (browser cache). At run time the DLLs will be streamed into memmory and go away once you close the browser. As of beta1, they won't leave any footprint on disk. &amp;nbsp; &lt;/p&gt;
</description></item><item><title>re: Silverlight for the Enterprises - where are my dlls?</title><link>http://blogs.msdn.com/hanuk/archive/2008/05/19/silverlight-for-the-enterprises-where-are-my-dlls.aspx#8547328</link><pubDate>Sat, 24 May 2008 17:31:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8547328</guid><dc:creator>Eloff</dc:creator><description>&lt;p&gt;Unless you load the .dlls dynamically, i.e. separately from the .xap. Then I imagine that they will be in the cache.&lt;/p&gt;
</description></item><item><title>re: Silverlight for the Enterprises - where are my dlls?</title><link>http://blogs.msdn.com/hanuk/archive/2008/05/19/silverlight-for-the-enterprises-where-are-my-dlls.aspx#8584276</link><pubDate>Mon, 09 Jun 2008 10:58:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8584276</guid><dc:creator>unknown</dc:creator><description>&lt;p&gt;How can I load .dlls dynamically.&lt;/p&gt;
</description></item><item><title>re: Silverlight for the Enterprises - where are my dlls?</title><link>http://blogs.msdn.com/hanuk/archive/2008/05/19/silverlight-for-the-enterprises-where-are-my-dlls.aspx#8594989</link><pubDate>Fri, 13 Jun 2008 23:58:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8594989</guid><dc:creator>hanuk</dc:creator><description>&lt;p&gt;You can't load a random .NET dll. If they DLL had been compiled to Silverlight runtime, it will have to be included into the XAP package. Once it is in the package, you can stream the dll into Silvelright applicaiton and use reflection to instantiate the types. See my other post on &amp;quot;Application Partitioning&amp;quot; for this technique.&lt;/p&gt;
</description></item><item><title>re: Silverlight for the Enterprises - where are my dlls?</title><link>http://blogs.msdn.com/hanuk/archive/2008/05/19/silverlight-for-the-enterprises-where-are-my-dlls.aspx#8667551</link><pubDate>Sun, 29 Jun 2008 18:21:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8667551</guid><dc:creator>Thomas Holloway</dc:creator><description>&lt;p&gt;Actually, you can load just about any random DLL. Check out my post about it on my blog, &lt;a rel="nofollow" target="_new" href="http://www.theadvents.com/?p=11"&gt;http://www.theadvents.com/?p=11&lt;/a&gt; &lt;/p&gt;
</description></item><item><title>re: Silverlight for the Enterprises - where are my dlls?</title><link>http://blogs.msdn.com/hanuk/archive/2008/05/19/silverlight-for-the-enterprises-where-are-my-dlls.aspx#8667564</link><pubDate>Sun, 29 Jun 2008 18:24:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8667564</guid><dc:creator>Thomas Holloway</dc:creator><description>&lt;p&gt;My question is, does Silverlight run in a single AppDomain? If that were true then a dll could be reused across several applications, which could reduce some overhead.&lt;/p&gt;
</description></item></channel></rss>