Looks through the InteractionPoints collection to determine whether the navigation to the destination view is possible.

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

Syntax

C#
public bool CanNavigateToView(
	string currViewName,
	string destViewName
)
Visual Basic (Declaration)
Public Function CanNavigateToView ( _
	currViewName As String, _
	destViewName As String _
) As Boolean
Visual C++
public:
bool CanNavigateToView(
	String^ currViewName, 
	String^ destViewName
)

Parameters

currViewName
Type: System..::.String
The name of the current view.
destViewName
Type: System..::.String
The name of the destination view.

Return Value

True if the navigation is possible, otherwise false.

See Also