Click here to Skip to main content
15,883,814 members
Articles / Programming Languages / XML

Learn How to Build a Provider Framework - With an Easy to Understand Example Towards Applying the Provider Pattern

Rate me:
Please Sign up or sign in to vote.
4.52/5 (43 votes)
20 Jul 2007CPOL14 min read 109.6K   590   154  
After reading this article, you'll be able to: (1) Change your mindset a little bit, and start thinking about 'frameworks' instead of just 'code' (2) Understand a lot about practically applying the Provider pattern in your projects (3) Gain much knowledge regarding XML config files and providers.
using System;
using System.Reflection;

namespace Sumeru.Publisher.Framework
{
	/// <summary>
	/// Summary description for PublisherFactory.
	/// </summary>
	public abstract class PublisherFactory
	{
		private PublisherFactory()
		{
		}


		/// <summary>
		/// Creates the publisher and return a type of IPublisher
		/// </summary>
		/// <param name="assembly">The path to the assembly</param>
		/// <param name="className">The class name to instantiate</param>
		/// <param name="settings">The settings collection</param>
		/// <returns></returns>
		public static IPublisher CreatePublisher(string assemblyName, string className,  Sumeru.Publisher.Framework.Data.SettingCollection settings) 
		{

			try 
			{
				IPublisher ipub;
				
				Assembly asm=Assembly.LoadFrom(assemblyName); 
				System.Type type=asm.GetType(className);
				object pub=Activator.CreateInstance(type); 
				ipub=(IPublisher) pub;
				ipub.Init(settings);
				return ipub;
			}
			catch (Exception ex) 
			{
				throw ex;

			}

		}

	}
}

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
India India
Architect, Developer, Speaker | Wannabe GUT inventor & Data Scientist | Microsoft MVP in C#

Comments and Discussions