Execute(INotification)

Fulfill the use-case initiated by the given INotification.
Namespace: PureMVC.Patterns.CommandAssembly: PureMVC in (PureMVC.dll)

Syntax

C#
public void Execute(
	INotification notification
	)

Parameters

notificationINotification
the INotification to handle.

Remarks

In the Command Pattern, an application use-case typically begins with some user action, which results in an INotification being broadcast, which is handled by business logic in the execute method of an ICommand.