<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Leandro Díaz Guerra&#039;s Blog &#187; C#</title>
	<atom:link href="http://www.leandrodg.com.ar/blog/tag/c/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.leandrodg.com.ar/blog</link>
	<description>Yet another developer blog</description>
	<lastBuildDate>Wed, 28 Jul 2010 13:45:37 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Encryption and decryption with X.509 certificates (with MIME Base64 Encoding)</title>
		<link>http://www.leandrodg.com.ar/blog/2010/03/encryption-and-decryption-with-x-509-certificates/</link>
		<comments>http://www.leandrodg.com.ar/blog/2010/03/encryption-and-decryption-with-x-509-certificates/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 20:30:05 +0000</pubDate>
		<dc:creator>Logue</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Biztalk]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Cryptography]]></category>

		<guid isPermaLink="false">http://www.leandrodg.com.ar/blog/?p=135</guid>
		<description><![CDATA[We&#8217;ve been working on the last months with encyption and decryption using certificates for Biztalk, I haven&#8217;t found enough documentation out there but after some time we were able to encrypt and decrypt messages with a very little amount of code.
Messages are encrypted using a certificate&#8217;s public key, and decrypted using their private key. This [...]]]></description>
		<wfw:commentRss>http://www.leandrodg.com.ar/blog/2010/03/encryption-and-decryption-with-x-509-certificates/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>.NET C#: Recycle current Application Pool programmatically (for IIS 6+)</title>
		<link>http://www.leandrodg.com.ar/blog/2008/02/find-and-recycle-current-application-pool-programmatically-for-iis-6/</link>
		<comments>http://www.leandrodg.com.ar/blog/2008/02/find-and-recycle-current-application-pool-programmatically-for-iis-6/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 13:42:39 +0000</pubDate>
		<dc:creator>leandrodg</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Application Pools]]></category>
		<category><![CDATA[ASP .NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Webforms]]></category>

		<guid isPermaLink="false">http://leandrodg.wordpress.com/?p=7</guid>
		<description><![CDATA[I&#8217;ve been working on how to recycle the current application pool for my ASP .NET application.
There are 3 steps for doing this:


Verify if application is running on IIS that supports application pools (if not, there&#8217;s nothing to recycle).
Get application pool name (obtained from the DirectoryServices entry corresponding to our virtual directory).
Invoke Recycle method in the [...]]]></description>
		<wfw:commentRss>http://www.leandrodg.com.ar/blog/2008/02/find-and-recycle-current-application-pool-programmatically-for-iis-6/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Determine current execution context (ASP.NET or Winforms)</title>
		<link>http://www.leandrodg.com.ar/blog/2007/10/determine-current-execution-context-webforms-or-winforms/</link>
		<comments>http://www.leandrodg.com.ar/blog/2007/10/determine-current-execution-context-webforms-or-winforms/#comments</comments>
		<pubDate>Fri, 05 Oct 2007 15:06:55 +0000</pubDate>
		<dc:creator>leandrodg</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP .NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Reflection]]></category>
		<category><![CDATA[Webforms]]></category>
		<category><![CDATA[Winforms]]></category>

		<guid isPermaLink="false">http://leandrodg.wordpress.com/2007/10/05/determine-current-execution-context-webforms-or-winforms/</guid>
		<description><![CDATA[I&#8217;ve searched over the internet for this and couldn&#8217;t find anything.
A method I&#8217;m working on should have a different behavior when called in a Web Application (Webforms) and a Windows Application (Winforms).
This is what I came up with, using Reflection:
	if (Assembly.GetEntryAssembly() != null)
	{
		// Running on Winforms context
	}
	else
	{
		// Running on ASP.NET context
	}

There are probably other ways [...]]]></description>
		<wfw:commentRss>http://www.leandrodg.com.ar/blog/2007/10/determine-current-execution-context-webforms-or-winforms/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
