Exemplo n.º 1
0
 /// <summary>
 /// Raises a notification. All registered actions associated to the key will be executed.
 /// </summary>
 ///
 /// <typeparam name="T">
 /// Type of the object.
 /// </typeparam>
 ///
 /// <param name="key">
 /// Key of the messenger.
 /// </param>
 ///
 /// <param name="obj">
 /// Value.
 /// </param>
 public void Notify <T>(string key, T obj)
 {
     _messengerService.Notify(key, obj);
 }