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

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

Remarks

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