Click here to Skip to main content
15,881,248 members
Articles / Programming Languages / C#

Generate Proxy Class at Build Time

Rate me:
Please Sign up or sign in to vote.
4.74/5 (13 votes)
15 Nov 2011Ms-PL5 min read 36.6K   214   25  
An introduction to Genuilder Extensibility
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Membership.Console
{
	public interface IRoleProvider
	{
		string Name
		{
			get;
			set;
		}
		void AddRole(string role);
		void DeleteRole(string role);
		IEnumerable<string> ListRoles();
		IAsyncResult BeginListRoles(AsyncCallback ac, object state);
		IEnumerable<string> EndListRoles(IAsyncResult ar);
		IAsyncResult BeginAddRole(string role, AsyncCallback ac, object state);
		void EndAddRole(IAsyncResult ar);
		IAsyncResult BeginDeleteRole(string role, AsyncCallback ac, object state);
		void EndDeleteRole(IAsyncResult ar);
		void Initialize(string conf);
		void BeginInitialize(string conf, AsyncCallback ac, object state);
		void EndInitialize(IAsyncResult ar);
		IEnumerable<string> ListUserInRole(string role);
		IAsyncResult BeginListUserInRole(string role, AsyncCallback ac, object state);
		IEnumerable<string> EndListUserInRole(IAsyncResult ar);
	}
}

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 Microsoft Public License (Ms-PL)


Written By
Software Developer Freelance
France France
I am currently the CTO of Metaco, we are leveraging the Bitcoin Blockchain for delivering financial services.

I also developed a tool to make IaaS on Azure more easy to use IaaS Management Studio.

If you want to contact me, go this way Smile | :)

Comments and Discussions