<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - Silverlight TV 57: Performance Tuning Your Apps</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Shows/SilverlightTV/Silverlight-TV-57-Performance-Tuning-Your-Apps/RSS"></atom:link>
	<image>
		<url>http://ak.channel9.msdn.com/ch9/eb2c/8cca920c-c209-4d7b-bc67-9e67015deb2c/sltv57_100_ch9.jpg</url>
		<title>Channel 9 - Silverlight TV 57: Performance Tuning Your Apps</title>
		<link></link>
	</image>
	<description> Application performance is a hot topic, and for good reason. User Experience is hugely important, but if your app is slow then everything degrades, including UX. In this episode, John talks to the Silverlight team&#39;s Mike Cook who shares several techniques that help tune Silverlight applications. With performance, it&#39;s all about knowing what tools to use and how to use them. Mike covers these topics and focuses on: CPU Profiling in Visual Studio 2010 Memory Analysiso&amp;nbsp;VMMap - 30,000 ft view of app memoryo&amp;nbsp;WinDbg &amp;#43; SOS Debug Extension - Managed memory analysiso&amp;nbsp;XPerf Heap Instrumentation - Native memory analysis You can find all of the links for the tools and information on how to use them in the relevant links listed below. Relevant links: John&#39;s blog&amp;nbsp;and on Twitter (@john_papa) Silverlight Performance Blog Silverlight Performance ForumVisual Studio Profiler Blog VMMapWinDbg SOS Xperf (Windows Performance Toolkit)Follow us on Twitter&amp;nbsp;@SilverlightTV&amp;nbsp;or on the web at&amp;nbsp;http://silverlight.tv &amp;nbsp; &amp;nbsp; &amp;nbsp; </description>
	<link></link>
	<language>en</language>
	<pubDate>Wed, 22 May 2013 00:45:52 GMT</pubDate>
	<lastBuildDate>Wed, 22 May 2013 00:45:52 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Silverlight TV 57: Performance Tuning Your Apps</title>
		<description>
			<![CDATA[Mike Cook is great. I want to see more of this guy!<p>posted by Kurt</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/SilverlightTV/Silverlight-TV-57-Performance-Tuning-Your-Apps#c634305384720000000</link>
		<pubDate>Thu, 13 Jan 2011 18:01:12 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/SilverlightTV/Silverlight-TV-57-Performance-Tuning-Your-Apps#c634305384720000000</guid>
		<dc:creator>Kurt</dc:creator>
	</item>
	<item>
		<title>Re: Silverlight TV 57: Performance Tuning Your Apps</title>
		<description>
			<![CDATA[ <p>What about out-of-browser applications? Are we able to profile those using Visual Studio 2010?</p><p>posted by martinmine</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/SilverlightTV/Silverlight-TV-57-Performance-Tuning-Your-Apps#c634305433320000000</link>
		<pubDate>Thu, 13 Jan 2011 19:22:12 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/SilverlightTV/Silverlight-TV-57-Performance-Tuning-Your-Apps#c634305433320000000</guid>
		<dc:creator>martinmine</dc:creator>
	</item>
	<item>
		<title>Re: Silverlight TV 57: Performance Tuning Your Apps</title>
		<description>
			<![CDATA[ <p>Yes you can.&nbsp; For out-of-browser applications instead of profiling iexplore.exe you'll need to profile sllauncher.exe (mine is located at &quot;C:\Program Files (x86)\Microsoft Silverlight\sllauncher.exe&quot;).&nbsp; Instead of passing the .html page as a command line argument, you'll pass the out-of-browser token for the application (this is the name of the folder your .exe lives in under &quot;C:\Users\&lt;username&gt;\AppData\Local\Microsoft\Silverlight\OutOfBrowser&quot;) followed by the &quot;/debug&quot; switch.&nbsp; So when you're finished it'll end up looking something like so:</p><ul><li><strong>What is the path to the full executable? </strong><ul><li>C:\Program Files (x86)\Microsoft Silverlight\sllauncher.exe </li></ul></li></ul><ul><li><strong>Command line arguements:&nbsp;</strong><ul><li>3800347859.testapp /debug </li></ul></li></ul><p>posted by MikeCook</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/SilverlightTV/Silverlight-TV-57-Performance-Tuning-Your-Apps#c634305451420000000</link>
		<pubDate>Thu, 13 Jan 2011 19:52:22 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/SilverlightTV/Silverlight-TV-57-Performance-Tuning-Your-Apps#c634305451420000000</guid>
		<dc:creator>MikeCook</dc:creator>
	</item>
	<item>
		<title>Re: Silverlight TV 57: Performance Tuning Your Apps</title>
		<description>
			<![CDATA[great<p>posted by Nereus</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/SilverlightTV/Silverlight-TV-57-Performance-Tuning-Your-Apps#c634305681170000000</link>
		<pubDate>Fri, 14 Jan 2011 02:15:17 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/SilverlightTV/Silverlight-TV-57-Performance-Tuning-Your-Apps#c634305681170000000</guid>
		<dc:creator>Nereus</dc:creator>
	</item>
	<item>
		<title>Re: Silverlight TV 57: Performance Tuning Your Apps</title>
		<description>
			<![CDATA[I used Mike's technique to adress a memory leak in the heap. All my Outstanding memory allocations, when I drill down the Stack, end up to Wow64SystemServiceEx.<br />I use a WCF service in my application, is that what this points to?<p>posted by OlivierGauthier</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/SilverlightTV/Silverlight-TV-57-Performance-Tuning-Your-Apps#c634309791260000000</link>
		<pubDate>Tue, 18 Jan 2011 20:25:26 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/SilverlightTV/Silverlight-TV-57-Performance-Tuning-Your-Apps#c634309791260000000</guid>
		<dc:creator>OlivierGauthier</dc:creator>
	</item>
	<item>
		<title>Re: Silverlight TV 57: Performance Tuning Your Apps</title>
		<description>
			<![CDATA[ <p>i want to dowload Silverlight but got lose along the instructions.</p><p>&nbsp;</p><p>posted by akcajunqueen</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/SilverlightTV/Silverlight-TV-57-Performance-Tuning-Your-Apps#c634310123830000000</link>
		<pubDate>Wed, 19 Jan 2011 05:39:43 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/SilverlightTV/Silverlight-TV-57-Performance-Tuning-Your-Apps#c634310123830000000</guid>
		<dc:creator>akcajunqueen</dc:creator>
	</item>
	<item>
		<title>Re: Silverlight TV 57: Performance Tuning Your Apps</title>
		<description>
			<![CDATA[ <p>@<a href="/Shows/SilverlightTV/Silverlight-TV-57-Performance-Tuning-Your-Apps#c634309791260000000">OlivierGauthier</a>: If you post a question with more detailed information about the stack in the <a href="http://forums.silverlight.net/forums/67.aspx">Silverlight Performance Forum</a> we can try to help you out.</p><p>posted by MikeCook</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/SilverlightTV/Silverlight-TV-57-Performance-Tuning-Your-Apps#c634310700110000000</link>
		<pubDate>Wed, 19 Jan 2011 21:40:11 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/SilverlightTV/Silverlight-TV-57-Performance-Tuning-Your-Apps#c634310700110000000</guid>
		<dc:creator>MikeCook</dc:creator>
	</item>
	<item>
		<title>Re: Silverlight TV 57: Performance Tuning Your Apps</title>
		<description>
			<![CDATA[ <p>Hey Mike, if that's your laptop this is a shoutout to a fellow SC II player!&nbsp; I noticed that icon down in your task bar haha!&nbsp; Excellent tutorial and set of demos.&nbsp; Thanks.</p><p>posted by Shimoakki</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/SilverlightTV/Silverlight-TV-57-Performance-Tuning-Your-Apps#c634310712550000000</link>
		<pubDate>Wed, 19 Jan 2011 22:00:55 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/SilverlightTV/Silverlight-TV-57-Performance-Tuning-Your-Apps#c634310712550000000</guid>
		<dc:creator>Shimoakki</dc:creator>
	</item>
</channel>
</rss>