Abstracts out the view switching logic. Different IViewsManager implementations correspond to different presentation platforms.

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

Syntax

C#
public interface IViewsManager
Visual Basic (Declaration)
Public Interface IViewsManager
Visual C++
public interface class IViewsManager

Remarks

Views managers work tightly in pair with Navigator objects. Each navigator is linked to a views manager to delegate the view activation job to it. And vice versa: any views manager has an association to its navigator ( IViewsManager.Navigator property), needed to obtain controllers for views.

See Also