Posts

Showing posts from January, 2013

Richer WCF 4.5

.net 4.5 has come up with lot of new rich features which makes developer’s life more easier & richer. WCF 4.5 has several new features which simplifies the development & as well some added new features which makes development more richer. The main objective of WCF 4.5 is to simplify the development & enhance the WCF communication with modern standards.Will discuss the new features in summery in this post & will discuss the features in detail in the next posts. 1. Task based Async Support By default, Add Service Reference generates Task-returning async service operation methods. This is done for both synchronous and asynchronous methods. This allows you to call the service operations asynchronously using the new Task based async programming model. When you call the generated proxy method, WCF constructs a Task object to represent the asynchronous operation and returns that Task to you. The Task completes when the operation completes.  When implementing an async op