SendNotification(String, Object, String)
Send a INotification.
Namespace: PureMVC.InterfacesAssembly: PureMVC in (PureMVC.dll)
Syntax
C#
public abstract void SendNotification( string notificationName, object body, string type )
Parameters
notificationName
Stringthe name of the notification to send
body
Objectthe body of the notification (optional)
type
Stringthe type of the notification (optional)
Remarks
Convenience method to prevent having to construct new notification instances in our implementation code.