Click here to Skip to main content
15,887,135 members
Articles / Programming Languages / C#

Dynamic/Transparent Proxy using DynamicProxy.NET

Rate me:
Please Sign up or sign in to vote.
4.90/5 (19 votes)
21 Oct 20039 min read 209.1K   3.9K   78  
Learn how easy it is to create Dynamic/Transparent proxies in .NET using DynamicProxy.NET
using System;

namespace DynamicProxyTutorial
{
	/// <summary>
	/// Interface for a fileviewer (a really simple one). 
	/// NB: An interface is required if you wish to use DynamicProxy.NET
	/// </summary>
	public interface IFileViewer
	{
		/// <summary>
		/// Opens the file, reads the content and closes the file afterwards.
		/// We perform the reading in a method, since you can't proxy constructor calls 
		/// (which for this simple sclass would be the best place to load the content).
		/// </summary>
		void ReadFromFile();

		/// <summary>
		/// Returns the content of the file.
		/// Please call ReadFromFile first.
		/// </summary>
		string Content {
			get;
		}

		/// <summary>
		/// Returns the path for the file being viewed
		/// </summary>
		string FilePath {
			get;
		}
	}
}

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Denmark Denmark
10 years experience in software design. In my job as a software architect I work with Java and J2EE. .net is so far only a hobby project, but nonetheless interesting Wink | ;-)

Comments and Discussions