Interface IView<TViewModel>
- Namespace
- Blazing.Mvvm.Components
- Assembly
- Blazing.Mvvm.dll
Represents a generic View in the MVVM pattern. Used to differentiate the View (such as a Blazor Page or Component) from its ViewModel for MvvmNavigationManager auto-detection.
public interface IView<out TViewModel> : IView, IDisposable where TViewModel : IViewModelBaseType Parameters
TViewModel-
The type of the ViewModel associated with this View. Must implement IViewModelBase.