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

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

Remarks

Convenience method to prevent having to construct new notification instances in our implementation code.