Click here to Skip to main content
15,893,588 members
Articles / General Programming / Threads

Plugged.NET - An event based plug-in library for enterprise application integration and extensibility

Rate me:
Please Sign up or sign in to vote.
4.89/5 (19 votes)
25 Jul 2013CPOL6 min read 34.1K   1.4K   92  
An event based plug-in library for enterprise application integration, extensibility and cross business application management.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Common.Plugin.Platform.Common
{
    public interface IExtensionEvents
    {
        event EventHandler OnStarted;
        event EventHandler OnCompleted;
        event EventHandler OnError;
    }

    public class AuthenticationContext
    {
        public string Firstname { get; set; }
        public string LastName { get; set; }
        public string UserName { get; set; }
        public object CustomMessage { get; set; }
    }

    public delegate AuthenticationContext AuthenticationDelegate(string email, string password);
}

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
India India
is a poor software developer and thinker. Presently working on a theory of "complementary perception". It's a work in progress.

Comments and Discussions