Creating a task-based WCF service
Windows Communication Foundation (WCF) remains a mature technology, so there is little difference in developing these applications and services with VS2015. Since WCF is a technology focused on network communications, the visible changes in Visual Studio are quite small. However, with .NET Framework 4.6.2, there have been many bug fixes and stability enhancements to ensure that it performs as expected.
Tip
WCF is Microsoft's framework designed for use in creating applications based on service-oriented architecture. Some of the features provided by WCF include interoperability, service metadata, data contracts, and security. For in-depth information on using WCF, refer to Microsoft's introduction at https://msdn.microsoft.com/en-us/library/ms731082(v=vs.110).aspx, and the general reference guide at http://msdn.microsoft.com/en-us/library/dd456779(v=vs.110).aspx.
In this recipe, you'll create a task-based WCF service so that you can see what...