Click here to Skip to main content
15,879,474 members
Articles / Programming Languages / C#

Dynamically Generate a WCF Proxy

Rate me:
Please Sign up or sign in to vote.
4.04/5 (13 votes)
8 Jan 2011CPOL5 min read 115.7K   2.5K   48  
Save time by using a dynamically generated WCF proxy
using System.ServiceModel;

namespace SharedInterface
{
   [ServiceContract]
   public interface IMessageCallback
   {
      [OperationContract(IsOneWay = true)]
      void OnMessageSend(string messageSend);
   }
}

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
Architect http://www.simpletechture.nl
Netherlands Netherlands
Patrick Kalkman is a senior Software Architect with more than 20 years professional development experience. He works for SimpleTechture where he helps teams develop state of the art web applications.

Patrick enjoys writing his blog. It discusses agile software development. Patrick can be reached at patrick@simpletechture.nl.

Published Windows 8 apps:


Published Windows Phone apps:


Awards:

Best Mobile article of March 2012
Best Mobile article of June 2012

Comments and Discussions