Basing on the navigation information stored in the TaskInfo
property performs navigation to the required view.
Namespace:
MVCSharp.CoreView activation is delegated to the linked ViewsManager object.
Assembly: MVCSharp (in MVCSharp.dll)
Version: 0.8.5217.34148
Syntax
C# |
---|
public class Navigator |
Visual Basic (Declaration) |
---|
Public Class Navigator |
Visual C++ |
---|
public ref class Navigator |
Remarks
During a task start Navigator object gets connected to the
ITask object and the proper IViewsManager
object (Navigator.Task and
Navigator.ViewsManager
properties respectively).
Examples
After a task is started the navigator is often accessed from
controllers:
CopyC#

class MyController : ControllerBase { public void MyOperation() { Task.Navigator.Navigate(MainTask.SomeView); } }