<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Thomas Levesque&#039;s .NET blog</title>
	<atom:link href="http://www.thomaslevesque.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thomaslevesque.com</link>
	<description>Tips, tricks and thoughts about .NET development</description>
	<lastBuildDate>Thu, 20 Jun 2013 09:28:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on [WPF] Binding to an asynchronous collection by Sumanth</title>
		<link>http://www.thomaslevesque.com/2009/04/17/wpf-binding-to-an-asynchronous-collection/#comment-33177</link>
		<dc:creator>Sumanth</dc:creator>
		<pubDate>Thu, 20 Jun 2013 09:28:46 +0000</pubDate>
		<guid isPermaLink="false">http://tomlev.wordpress.com/?p=143#comment-33177</guid>
		<description><![CDATA[Awesome.. It worked like a charm.. Solved my issue. I was looking all around and this one was simple and solved my problem! Thanks for posting this Thomas!]]></description>
		<content:encoded><![CDATA[<p>Awesome.. It worked like a charm.. Solved my issue. I was looking all around and this one was simple and solved my problem! Thanks for posting this Thomas!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on [WPF] Display an animated GIF image by Thomas Levesque</title>
		<link>http://www.thomaslevesque.com/2011/03/27/wpf-display-an-animated-gif-image/#comment-32868</link>
		<dc:creator>Thomas Levesque</dc:creator>
		<pubDate>Mon, 10 Jun 2013 08:45:38 +0000</pubDate>
		<guid isPermaLink="false">http://tomlev2.wordpress.com/?p=336#comment-32868</guid>
		<description><![CDATA[Hi Jackie, the code in this article is obsolete; you should use the code from Codeplex instead (http://wpfanimatedgif.codeplex.com), where this fix has already been made.]]></description>
		<content:encoded><![CDATA[<p>Hi Jackie, the code in this article is obsolete; you should use the code from Codeplex instead (<a href="http://wpfanimatedgif.codeplex.com" rel="nofollow">http://wpfanimatedgif.codeplex.com</a>), where this fix has already been made.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on [WPF] Display an animated GIF image by Jackie</title>
		<link>http://www.thomaslevesque.com/2011/03/27/wpf-display-an-animated-gif-image/#comment-32867</link>
		<dc:creator>Jackie</dc:creator>
		<pubDate>Mon, 10 Jun 2013 08:28:15 +0000</pubDate>
		<guid isPermaLink="false">http://tomlev2.wordpress.com/?p=336#comment-32867</guid>
		<description><![CDATA[Thanks for your work. Just one small improvement to handle some GIF files that has Delay set to 0 in metadata, change the following line in method GetFrameInfo from

if (delay.HasValue)

to

if (delay.HasValue &amp;&amp; delay.Value &gt; 0)]]></description>
		<content:encoded><![CDATA[<p>Thanks for your work. Just one small improvement to handle some GIF files that has Delay set to 0 in metadata, change the following line in method GetFrameInfo from</p>
<p>if (delay.HasValue)</p>
<p>to</p>
<p>if (delay.HasValue &amp;&amp; delay.Value &gt; 0)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on [WPF] Display an animated GIF image by Dominik P</title>
		<link>http://www.thomaslevesque.com/2011/03/27/wpf-display-an-animated-gif-image/#comment-32485</link>
		<dc:creator>Dominik P</dc:creator>
		<pubDate>Fri, 31 May 2013 08:06:43 +0000</pubDate>
		<guid isPermaLink="false">http://tomlev2.wordpress.com/?p=336#comment-32485</guid>
		<description><![CDATA[It gets jump if you are doing something on the UI thread that blocks the dispatcher from updating the animation. Refactor those calls into BackgroundWorker.DoWork/Completed structure and it runs smoothly.]]></description>
		<content:encoded><![CDATA[<p>It gets jump if you are doing something on the UI thread that blocks the dispatcher from updating the animation. Refactor those calls into BackgroundWorker.DoWork/Completed structure and it runs smoothly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on An easy and secure way to store a password using Data Protection API by Kent Boogaart</title>
		<link>http://www.thomaslevesque.com/2013/05/21/an-easy-and-secure-way-to-store-a-password-using-data-protection-api/#comment-32402</link>
		<dc:creator>Kent Boogaart</dc:creator>
		<pubDate>Tue, 28 May 2013 12:23:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomaslevesque.com/?p=520#comment-32402</guid>
		<description><![CDATA[Great post, Thomas. I had completely forgotten about the DPAPI. I don&#039;&#039;t have any user secrets to store just now, but this is a great reminder for when I do.

It&#039;&#039;s worth pointing out that the optional entropy is used to ensure application A1 running as user U cannot gain access to protected data written by application A2 running as the same user. Without the optional entropy, you&#039;&#039;re leaving yourself more open to such an attack.

On the assumption that your extension methods are only used within your application, you could hard-code your optional entropy right there instead of taking as a parameter. It&#039;&#039;s not fool-proof of course, but it&#039;&#039;s not really supposed to be - it&#039;&#039;s just supposed to make it &quot;more difficult&quot; to compromise the data.

Good stuff.]]></description>
		<content:encoded><![CDATA[<p>Great post, Thomas. I had completely forgotten about the DPAPI. I don&#8221;t have any user secrets to store just now, but this is a great reminder for when I do.</p>
<p>It&#8221;s worth pointing out that the optional entropy is used to ensure application A1 running as user U cannot gain access to protected data written by application A2 running as the same user. Without the optional entropy, you&#8221;re leaving yourself more open to such an attack.</p>
<p>On the assumption that your extension methods are only used within your application, you could hard-code your optional entropy right there instead of taking as a parameter. It&#8221;s not fool-proof of course, but it&#8221;s not really supposed to be &#8211; it&#8221;s just supposed to make it &#8220;more difficult&#8221; to compromise the data.</p>
<p>Good stuff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using C# 5 caller info attributes when targeting earlier versions of the .NET framework by Akku</title>
		<link>http://www.thomaslevesque.com/2012/06/13/using-c-5-caller-info-attributes-when-targeting-earlier-versions-of-the-net-framework/#comment-32263</link>
		<dc:creator>Akku</dc:creator>
		<pubDate>Thu, 23 May 2013 15:00:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomaslevesque.com/?p=475#comment-32263</guid>
		<description><![CDATA[@Manish: I had the same problem, won&#039;&#039;t fix for me, used the workaround posted above.]]></description>
		<content:encoded><![CDATA[<p>@Manish: I had the same problem, won&#8221;t fix for me, used the workaround posted above.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using C# 5 caller info attributes when targeting earlier versions of the .NET framework by Thomas Levesque</title>
		<link>http://www.thomaslevesque.com/2012/06/13/using-c-5-caller-info-attributes-when-targeting-earlier-versions-of-the-net-framework/#comment-32260</link>
		<dc:creator>Thomas Levesque</dc:creator>
		<pubDate>Thu, 23 May 2013 14:26:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomaslevesque.com/?p=475#comment-32260</guid>
		<description><![CDATA[Yes, I tried it, and it works fine. I don&#039;&#039;t usually post something on my blog without testing it first ;)

Are you sure you declared the attributes in the correct namespace?]]></description>
		<content:encoded><![CDATA[<p>Yes, I tried it, and it works fine. I don&#8221;t usually post something on my blog without testing it first <img src='http://www.thomaslevesque.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Are you sure you declared the attributes in the correct namespace?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using C# 5 caller info attributes when targeting earlier versions of the .NET framework by Manish</title>
		<link>http://www.thomaslevesque.com/2012/06/13/using-c-5-caller-info-attributes-when-targeting-earlier-versions-of-the-net-framework/#comment-32256</link>
		<dc:creator>Manish</dc:creator>
		<pubDate>Thu, 23 May 2013 12:23:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomaslevesque.com/?p=475#comment-32256</guid>
		<description><![CDATA[Do you tried it Frank coz its not working here mate.]]></description>
		<content:encoded><![CDATA[<p>Do you tried it Frank coz its not working here mate.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using C# 5 caller info attributes when targeting earlier versions of the .NET framework by Manish</title>
		<link>http://www.thomaslevesque.com/2012/06/13/using-c-5-caller-info-attributes-when-targeting-earlier-versions-of-the-net-framework/#comment-32255</link>
		<dc:creator>Manish</dc:creator>
		<pubDate>Thu, 23 May 2013 12:20:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomaslevesque.com/?p=475#comment-32255</guid>
		<description><![CDATA[I tried it in VS2012 targeting framework 4.0 but all I get is empty file path,line as well as member Name.
Do I missing something?]]></description>
		<content:encoded><![CDATA[<p>I tried it in VS2012 targeting framework 4.0 but all I get is empty file path,line as well as member Name.<br />
Do I missing something?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on [WPF] How to bind to data when the DataContext is not inherited by Arena</title>
		<link>http://www.thomaslevesque.com/2011/03/21/wpf-how-to-bind-to-data-when-the-datacontext-is-not-inherited/#comment-32226</link>
		<dc:creator>Arena</dc:creator>
		<pubDate>Wed, 22 May 2013 08:54:57 +0000</pubDate>
		<guid isPermaLink="false">http://tomlev2.wordpress.com/?p=327#comment-32226</guid>
		<description><![CDATA[Ok...thank you Thomas...:)]]></description>
		<content:encoded><![CDATA[<p>Ok&#8230;thank you Thomas&#8230;:)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
