Example #1
0
 public static SplashMessageUpdatedEvent WithTypeFullName <T>(this SplashMessageUpdatedEvent evt)
 {
     return(evt.WithTypeFullName(typeof(T)));
 }
Example #2
0
 public static void PublishSplashMessageUpdatedEvent(this IEventAggregator eventAggregator, SplashMessageUpdatedEvent evt)
 {
     eventAggregator
     .GetEvent <SplashMessageUpdatedEvent>()
     .Publish(evt);
 }
Example #3
0
 public static SplashMessageUpdatedEvent WithTypeFullName(this SplashMessageUpdatedEvent evt, Type type)
 {
     evt.Message = type.FullName;
     return(evt);
 }