public void InvokeAllEvents() { PublicEvent?.Invoke(); PrivateEvent?.Invoke(); InternalEvent?.Invoke(); ProtectedEvent?.Invoke(); ProtectedInternalEvent?.Invoke(); }
public void InvokeProtectedEvent() { ProtectedEvent?.Invoke(this, new ProtectedEventArgs()); }