├── Sz.BlazorRerenderReducers ├── Client │ ├── ProductGridDemo │ │ ├── ProductShareLink.razor │ │ ├── OutOfStockBadge.razor │ │ ├── ProductCode.razor │ │ ├── OtherPropertyHeader.razor │ │ ├── ProductPriceTag.razor │ │ ├── ProductImage.razor │ │ ├── Helpers.cs │ │ ├── OtherPropertyCell.razor │ │ ├── ProductViewModel.cs │ │ ├── ProductGrid.razor │ │ └── ProductTile.razor │ ├── wwwroot │ │ ├── favicon.ico │ │ ├── css │ │ │ ├── open-iconic │ │ │ │ ├── font │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── open-iconic.eot │ │ │ │ │ │ ├── open-iconic.otf │ │ │ │ │ │ ├── open-iconic.ttf │ │ │ │ │ │ ├── open-iconic.woff │ │ │ │ │ │ └── open-iconic.svg │ │ │ │ │ └── css │ │ │ │ │ │ └── open-iconic-bootstrap.min.css │ │ │ │ ├── ICON-LICENSE │ │ │ │ ├── README.md │ │ │ │ └── FONT-LICENSE │ │ │ └── app.css │ │ └── index.html │ ├── Shared │ │ ├── MainLayout.razor │ │ ├── Helpers.cs │ │ ├── Foo.cs │ │ └── MainLayout.razor.css │ ├── App.razor │ ├── _Imports.razor │ ├── Pages │ │ ├── MainPanel.razor │ │ ├── NestedPanel.razor │ │ ├── Index.razor │ │ └── ProductGridDemo.razor │ ├── Program.cs │ ├── Sz.BlazorRerenderReducers.Client.csproj │ └── Properties │ │ └── launchSettings.json ├── Server │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── Sz.BlazorRerenderReducers.Server.csproj │ ├── Program.cs │ ├── Pages │ │ ├── Error.cshtml.cs │ │ └── Error.cshtml │ ├── Properties │ │ ├── launchSettings.json │ │ ├── PublishProfiles │ │ │ ├── SzBlazorRerenderReducers - Web Deploy.pubxml.user │ │ │ └── SzBlazorRerenderReducers - Web Deploy.pubxml │ │ └── ServiceDependencies │ │ │ └── SzBlazorRerenderReducers - Web Deploy │ │ │ └── profile.arm.json │ └── Startup.cs └── Shared │ ├── Sz.BlazorRerenderReducers.csproj │ ├── ScopeTimer.cs │ ├── README.md │ └── DisplayHashRerenderComponentBase.cs ├── .gitignore ├── .github └── workflows │ └── dotnet.yml ├── Sz.BlazorRerenderReducers.sln └── README.md /Sz.BlazorRerenderReducers/Client/ProductGridDemo/ProductShareLink.razor: -------------------------------------------------------------------------------- 1 | Share 2 | -------------------------------------------------------------------------------- /Sz.BlazorRerenderReducers/Client/ProductGridDemo/OutOfStockBadge.razor: -------------------------------------------------------------------------------- 1 |
Sorry, there's nothing at this address.
8 |
24 | Request ID: @Model.RequestId
25 |
30 | Swapping to the Development environment displays detailed information about the error that occurred. 31 |
32 |33 | The Development environment shouldn't be enabled for deployed applications. 34 | It can result in displaying sensitive information from exceptions to end users. 35 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 36 | and restarting the app. 37 |
38 |
16 | /// using (new ScopeTimer("Loading foo into memory")}
17 | /// await LoadFoo();
18 | /// }
19 | ///
20 | /// This will output the label "LoadFoo:" and the time running LoadFoo, in milliseconds, to the console.
21 | ///