VisualBean
2/22/2017 - 7:29 PM

BaseController.cs

...
 public void ShowToastMessage( string title, string content, ToastType type )
{
    var username =  HttpContext.User.Identity.Name;
    //Send a toast to the current user.
    MessageEmitter.ShowToast(username,title, content, type);
}
...