Click here to Skip to main content
15,888,579 members
Articles / Programming Languages / C# 4.0

Frictionless WCF service consumption in Silverlight - Part 2: Fixing the "All Is Async" Problem

Rate me:
Please Sign up or sign in to vote.
4.98/5 (38 votes)
17 May 2011MIT20 min read 115.4K   613   39  
Simplifying programming of asynchronous WCF service calls and asynchronous programming in general.
#region Author

 //// Rob Eisenberg, Blue Spire Consulting, Inc 

#endregion

using System;

namespace Sample.Silverlight.WCF.Infrastructure.Actions
{
	public interface IAction
	{
		void Execute();
		event EventHandler Completed;
	}
}

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 MIT License


Written By
Software Developer http://blog.xtalion.com
Ukraine Ukraine
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions