Click here to Skip to main content
15,896,489 members
Articles / Programming Languages / C#

WCF: The Right Way. A Quick Reference Guide

Rate me:
Please Sign up or sign in to vote.
4.77/5 (17 votes)
3 Oct 2010CPOL6 min read 69.7K   1.9K   85  
A developer workflow of the manual way of creating and consuming WCF Services developed by Miguel Castro
namespace $safeprojectname$
{
    using System.ServiceModel;
    using System.Collections.Generic;

    [ServiceContract(Namespace = "http://temp_name")]
    public interface ITestService
    {

        [OperationContract()]
        string TestFunction(string greetingSuffix);

    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Encore Software
Australia Australia
Contractor in Desktop and Web applications.
Gold Coast, Queensland.

Comments and Discussions