You do not have access to that resource.
8 |Would you like to logout of IdentityServer?
11 | 19 |8 | Please enter the code displayed on your device 9 |
10 | 14 |Once complete, you may close this tab
5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Authentication-and-Authorization/IdentityServer4/Views/Shared/_ValidationSummary.cshtml: -------------------------------------------------------------------------------- 1 | @if (ViewContext.ModelState.IsValid == false) 2 | { 3 |7 | @foreach (var claim in Context.User.Claims) 8 | { 9 |
@claim.Type
: @claim.ValueUse this page to detail your site's privacy policy.
7 | -------------------------------------------------------------------------------- /Web-Socket/Signlar/SignlarDemo/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Web-Socket/Signlar/SignlarDemo/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using SignlarDemo 2 | @using SignlarDemo.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /Web-Socket/Signlar/SignlarDemo/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /Web-Socket/Signlar/SignlarDemo/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Web-Socket/Signlar/SignlarDemo/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*", 10 | "Authentication": { 11 | "JwtBearer": { 12 | "SecurityKey": "lin-cms-dotnetcore-SecurityKey", 13 | "Issuer": "lin-cms-dotnetcore-Issuer", 14 | "Audience": "LinCms.Web" 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Web-Socket/Signlar/SignlarDemo/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyunchong/dotnetcore-examples/e355fe01a97dc3c4f29f57640ad579d739d5833b/Web-Socket/Signlar/SignlarDemo/wwwroot/favicon.ico -------------------------------------------------------------------------------- /blazor/BlazorAppPWA/App.razor: -------------------------------------------------------------------------------- 1 |Sorry, there's nothing at this address.
8 |Sorry, there's nothing at this address.
8 |Sorry, there's nothing at this address.
11 |Current count: @currentCount
6 | 7 | 8 | 9 | @code { 10 | int currentCount = 0; 11 | 12 | void IncrementCount() 13 | { 14 | currentCount++; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /blazor/BlazorAppUpgrader/CustomClassLibrary/Pages/Index.razor: -------------------------------------------------------------------------------- 1 | @page "/" 2 | 3 |Sorry, there's nothing at this address.
8 |Current count: @currentCount
6 | 7 | 8 | 9 | @code { 10 | private int currentCount = 0; 11 | 12 | private void IncrementCount() 13 | { 14 | currentCount++; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /blazor/BlazorClientSolo/Shared/MainLayout.razor: -------------------------------------------------------------------------------- 1 | @inherits LayoutComponentBase 2 | 3 | 6 | 7 |Sorry, there's nothing at this address.
9 |Current count: @currentCount
6 | 7 | 8 | 9 | @code { 10 | private int currentCount = 0; 11 | 12 | private void IncrementCount() 13 | { 14 | currentCount++; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /blazor/BlazorCookieAuth/BlazorCookieAuth/Pages/Login.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model BlazorCookieAuth.Server.Pages.LoginModel 3 | @{ 4 | ViewData["Title"] = "Log in"; 5 | } 6 |Sorry, there's nothing at this address.
9 |Current count: @currentCount
6 | 7 | 8 | 9 | @code { 10 | int currentCount = 0; 11 | 12 | void IncrementCount() 13 | { 14 | currentCount++; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /blazor/BlazorGmail/BlazorGmail/Pages/Index.razor: -------------------------------------------------------------------------------- 1 | @page "/" 2 | 3 |Sorry, there's nothing at this address.
8 |Current count: @currentCount
6 | 7 | 8 | 9 | @code { 10 | int currentCount = 0; 11 | 12 | void IncrementCount() 13 | { 14 | currentCount++; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /blazor/BlazorServer/Pages/Error.razor: -------------------------------------------------------------------------------- 1 | @page "/error" 2 | 3 | 4 |9 | Swapping to Development environment will display more detailed information about the error that occurred. 10 |
11 |12 | The Development environment shouldn't be enabled for deployed applications. 13 | It can result in displaying sensitive information from exceptions to end users. 14 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 15 | and restarting the app. 16 |
-------------------------------------------------------------------------------- /blazor/BlazorServer/Pages/Index.razor: -------------------------------------------------------------------------------- 1 | @page "/" 2 | 3 |Sorry, there's nothing at this address.
8 |