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

CreateSubscriptionDelegate() protected method

protected CreateSubscriptionDelegate ( object subscriber ) : Delegate
subscriber object
return System.Delegate
        protected Delegate CreateSubscriptionDelegate(object subscriber)
        {
            return Delegate.CreateDelegate(this.EventHandlerType, subscriber, this.HandlerMethod);
        }
    }