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
notificationName
Stringthe name of the notiification to send
body
Objectthe body of the notification (optional)
type
Stringthe type of the notification (optional)
Remarks
Keeps us from having to construct new INotification instances in our implementation code.