コード例 #1
0
        /// <summary>
        /// Fetches the documentation pages corresponding to this version from the server.
        /// </summary>
        internal async void FetchDocumentation()
        {
            var pages = await DocumentationPageViewModel.FetchGettingStartedPages(ServiceProvider, $"{Major}.{Minor}");

            Dispatcher.Invoke(() => { DocumentationPages.Clear(); DocumentationPages.AddRange(pages); });
        }