Appccelerate.EventBroker.Internals.Subscriptions.DelegateWrapper.DelegateWrapper C# (CSharp) Method

DelegateWrapper() protected method

protected DelegateWrapper ( Type eventArgsType, Type eventHandlerType, MethodInfo handlerMethod ) : System
eventArgsType System.Type
eventHandlerType System.Type
handlerMethod System.Reflection.MethodInfo
return System
        protected DelegateWrapper(Type eventArgsType, Type eventHandlerType, MethodInfo handlerMethod)
        {
            this.HandlerMethod = handlerMethod;
            this.EventArgsType = eventArgsType;
            this.EventHandlerType = eventHandlerType;
        }