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

notificationNameString
the name of the notiification to send
bodyObject
the body of the notification (optional)
typeString
type the type of the notification (optional)

Remarks

Keeps us from having to construct new notification instances in our implementation code.