Click here to Skip to main content
15,897,718 members
Articles / Programming Languages / C#

Applied Use of LinFu/Cecil and Aspect-Oriented Programming Concepts - A Library

Rate me:
Please Sign up or sign in to vote.
4.88/5 (8 votes)
4 Sep 2008CPOL17 min read 35.3K   160   32  
A library of useful functionality using Aspect-Oriented Programming concepts, and implemented using the LinFu and Cecil.Mono projects/frameworks.
using System;
using System.Reflection;
using System.Windows.Forms;

using System.Collections.Generic;
using System.IO;
using System.ComponentModel;
using System.Collections;
using System.Text;
using System.Threading;
using System.Runtime.Serialization.Formatters.Binary;

using BrainTechLLC.ThreadSafeObjects;
using LinFu.AOP;
using LinFu.AOP.Interfaces;

namespace BrainTechLLC
{
	public class IfThenElseWrapper : AroundMethodBase, IAroundInvoke
	{
		private void Execute(IInvocationContext context, CutpointType when)
		{
			object thisObject = context.Target;
			InvokeIfThenElseAttribute[] attrs = context.TargetMethod.ReadAttribute<InvokeIfThenElseAttribute>();

			attrs.ForEachAttribute(delegate(InvokeIfThenElseAttribute attr)
			{
				if (when == CutpointType.Before)
					attr.DoWorkBefore(context, thisObject);
				else
					attr.DoWorkAfter(context, thisObject);
			});
		}

		public override void AfterInvoke(IInvocationContext context, object returnValue)
		{
			Execute(context, CutpointType.After);
		}

		public override void BeforeInvoke(IInvocationContext context)
		{
			Execute(context, CutpointType.Before);
		}
	}
}

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 (Senior) Troppus Software
United States United States
Currently working as a Senior Silverlight Developer with Troppus Software in Superior, CO. I enjoy statistics, programming, new technology, playing the cello, and reading codeproject articles. Smile | :)

Comments and Discussions