Click here to Skip to main content
15,896,063 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 116.1K   613   39  
Simplifying programming of asynchronous WCF service calls and asynchronous programming in general.
#region Author

//// Yevhen Bobrov, http://blog.xtalion.com 

#endregion

using System;
using System.Linq.Expressions;
using System.Windows.Input;

namespace Sample.Silverlight.WCF.Infrastructure
{
	public class ViewModelCommandBuilder
	{
		readonly ViewModelBase viewModel;

		public ViewModelCommandBuilder(ViewModelBase viewModel)
		{
			this.viewModel = viewModel;
		}

		public ICommand For(Expression<Action> expression)
		{
			var methodCall = (MethodCallExpression)expression.Body;

			return new ViewModelCommand(viewModel, methodCall.Method, 
										viewModel.GetType().GetProperty("Can" + methodCall.Method.Name));
		}
	}
}

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