Appccelerate.EventBroker.Internals.Exceptions.StaticPublisherEventException.StaticPublisherEventException C# (CSharp) Method

StaticPublisherEventException() public method

Initializes a new instance of the StaticPublisherEventException class.
public StaticPublisherEventException ( EventInfo eventInfo ) : System.Reflection
eventInfo System.Reflection.EventInfo The event info.
return System.Reflection
        public StaticPublisherEventException(EventInfo eventInfo)
            : base("Static publisher event is not allowed: '{0}.{1}'", eventInfo.DeclaringType.FullName, eventInfo.Name)
        {
        }
    }
StaticPublisherEventException