SendNotification(String, Object, String)
Create and send an INotification.
Namespace: PureMVC.Patterns.FacadeAssembly: PureMVC in (PureMVC.dll)
Syntax
C#
public void SendNotification( string notificationName, object body, string type )
Parameters
notificationName
Stringthe name of the notiification to send
body
Objectthe body of the notification (optional)
type
Stringtype the type of the notification (optional)
Remarks
Keeps us from having to construct new notification instances in our implementation code.