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