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