Looks through the InteractionPoints collection to retrieve the name of the next view, given the current view name and the navigation trigger name.

Namespace:  MVCSharp.Core.Configuration.Tasks
Assembly:  MVCSharp (in MVCSharp.dll)
Version: 0.8.5217.34148

Syntax

C#
public string GetNextViewName(
	string currViewName,
	string triggerName
)
Visual Basic (Declaration)
Public Function GetNextViewName ( _
	currViewName As String, _
	triggerName As String _
) As String
Visual C++
public:
String^ GetNextViewName(
	String^ currViewName, 
	String^ triggerName
)

Parameters

currViewName
Type: System..::.String
The name of the current view.
triggerName
Type: System..::.String
The name of the navigation trigger (may be equal to the target view name).

Return Value

The name of the next view or null if not found.

See Also