Exemple #1
0
        public async Task InitializeAsync()
        {
            _appInsightsService.LogEvent("modules/loadModule2", "Loading module #2 into app...");

            _hubMetadataService.AddHubSection("M2", "Cats", typeof(CatListView).AssemblyQualifiedName);

            await Task.FromResult <object>(null);
        }
Exemple #2
0
        public async Task InitializeAsync()
        {
            _appInsightsService.LogEvent("modules/loadModule3", "Loading module #3 into app...");

            _hubMetadataService.AddHubSection
            (
                "M3",
                "Farmers and Animals",
                typeof(FarmersView).AssemblyQualifiedName
            );

            await Task.FromResult <object>(null);
        }