<?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>TechBubbles &#187; .NET Framework 4.0</title>
	<atom:link href="http://www.techbubbles.com/tag/net-framework-4-0/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techbubbles.com</link>
	<description></description>
	<lastBuildDate>Sun, 05 Feb 2012 22:18:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WCF Service using MTOM in .NET FW 4</title>
		<link>http://www.techbubbles.com/webservices/wcf-service-using-mtom-in-net-fw-4/</link>
		<comments>http://www.techbubbles.com/webservices/wcf-service-using-mtom-in-net-fw-4/#comments</comments>
		<pubDate>Sat, 14 May 2011 13:58:08 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[.NET Framework 4]]></category>
		<category><![CDATA[WCF]]></category>
		<category><![CDATA[Webservices]]></category>
		<category><![CDATA[.NET Framework 4.0]]></category>
		<category><![CDATA[WCF Service]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/webservices/wcf-service-using-mtom-in-net/</guid>
		<description><![CDATA[&#160;
Web services having a greater interoperability to communicate messages across heterogeneous systems, however challenge is serializing the data into XML. Users may want to send images,videos, drawings, xml documents etc. together with SOAP message.&#160; 
What is MTOM?
Message Transmission Optimization Mechanism (MTOM) is a mechanism of transferring transferring large amounts binary data as an attachment to [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/webservices/wcf-service-using-mtom-in-net-fw-4/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Guidelines for Developing Class Libraries in .NET</title>
		<link>http://www.techbubbles.com/net-framework/guidelines-for-developing-class-libraries-in-net/</link>
		<comments>http://www.techbubbles.com/net-framework/guidelines-for-developing-class-libraries-in-net/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 20:43:11 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[.NET Framework 4]]></category>
		<category><![CDATA[.NET Framework 4.0]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/net-framework/guidelines-for-developing-class-libraries-in-net/</guid>
		<description><![CDATA[



This post explains about design guidelines for developing class libraries that extends the .NET Framework. Following design guidelines provides benefits of consistency and unified programming model for developers.





Naming Conventions for Casing Identifiers
There are two different styles in Casing Identifiers
  

Pascal Casing – The first letter in the identifier and first letter of subsequent&#160; word [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/net-framework/guidelines-for-developing-class-libraries-in-net/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Visual Studio 2010 Service Pack 1 Beta Released</title>
		<link>http://www.techbubbles.com/net-framework-4/visual-studio-2010-service-pack-1-beta-released/</link>
		<comments>http://www.techbubbles.com/net-framework-4/visual-studio-2010-service-pack-1-beta-released/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 07:22:26 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[.NET Framework 4]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>
		<category><![CDATA[.NET Framework 4.0]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/net-framework-4/visual-studio-2010-service-pack-1-beta-released/</guid>
		<description><![CDATA[&#160;
Microsoft announced VS 2010 Service Pack1 Beta&#160; and is ready for download. MSDN subscribers can download beta from here
General users can download from here

Service Pack 1 Beta including the following features
  

Better Help viewer 


check out more details on Help feature here

Unit Testing on .NET 3.5 Now all unit tests runs under .NET FW [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/net-framework-4/visual-studio-2010-service-pack-1-beta-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.NET Framework 4 File IO Features</title>
		<link>http://www.techbubbles.com/net-framework/net-framework-4-file-io-features/</link>
		<comments>http://www.techbubbles.com/net-framework/net-framework-4-file-io-features/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 17:17:21 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[.NET Framework 4]]></category>
		<category><![CDATA[.NET Framework 4.0]]></category>
		<category><![CDATA[File IO]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/net-framework/net-framework-4-file-io-features/</guid>
		<description><![CDATA[New methods are added to the System.IO.File class in .NET framework 4.0 for reading and writing text files. 
ReadLines

In earlier version we have used File.ReadAllLines method which returns a string array of all lines in the file.

String[] lines = File.ReadAllLines(“file.txt”);


The issue is it must read all lines and allocate an array to return. For small [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/net-framework/net-framework-4-file-io-features/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>.NET Framework 4 BCL</title>
		<link>http://www.techbubbles.com/net-framework/net-framework-4-bcl/</link>
		<comments>http://www.techbubbles.com/net-framework/net-framework-4-bcl/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 19:19:07 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[.NET Framework 4.0]]></category>
		<category><![CDATA[BCL]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/net-framework/net-framework-4-bcl/</guid>
		<description><![CDATA[All .NET developers who uses the BaseClassLibraries can read this post to know what’s New in the .NET FW 4 BCL.&#160; Its not the scope of this post to cover all the features but you can read them on BCL team blog at blogs.msdn.com/bclteam.
The following are the features that you can explore in BCL

Code Contracts
Parallel [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/net-framework/net-framework-4-bcl/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WCF Features in .NET Framework 4.0</title>
		<link>http://www.techbubbles.com/wcf/wcf-features-in-net-framework-40/</link>
		<comments>http://www.techbubbles.com/wcf/wcf-features-in-net-framework-40/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 15:56:34 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[WCF]]></category>
		<category><![CDATA[.NET Framework 4.0]]></category>
		<category><![CDATA[WCF Features]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/wcf/wcf-features-in-net-framework-40/</guid>
		<description><![CDATA[Introduction
WCF providing a way to define service contracts and to configure endpoint definitions using the declarative XAML in .NET Framework 4.0.
Consider the WCF service contract definition:


In .NET Framework 4.0, you can define the same contract declaratively using the following XAML definition:

We have defined service contract in XAML, the next step is defining the projection of [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/wcf/wcf-features-in-net-framework-40/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

