Appccelerate.EventBroker.Internals.Inspection.EventInspector.CheckEventInfoFound C# (CSharp) Method

CheckEventInfoFound() private static method

private static CheckEventInfoFound ( object publisher, string eventName, EventInfo eventInfo ) : void
publisher object
eventName string
eventInfo System.Reflection.EventInfo
return void
        private static void CheckEventInfoFound(object publisher, string eventName, EventInfo eventInfo)
        {
            if (eventInfo == null)
            {
                throw new PublisherEventNotFoundException(publisher.GetType(), eventName);
            }
        }
    }