Catel.MVVM.Views.ViewToViewModelMappingContainer.GetAllViewToViewModelMappings C# (CSharp) Method

GetAllViewToViewModelMappings() public method

Gets all the ViewToViewModelMapping that are registered.
public GetAllViewToViewModelMappings ( ) : IEnumerable
return IEnumerable
        public IEnumerable<ViewToViewModelMapping> GetAllViewToViewModelMappings()
        {
            return _viewToViewModelMappings.Select(mapping => mapping.Value);
        }