5 writes to RedirectUri
Keycloak.Web (2)
LoginLogoutEndpointRouteBuilderExtensions.cs (2)
13group.MapGet("/login", () => TypedResults.Challenge(new AuthenticationProperties { RedirectUri = "/" })) 16group.MapPost("/logout", () => TypedResults.SignOut(new AuthenticationProperties { RedirectUri = "/" },
Microsoft.AspNetCore.Authentication (1)
RemoteAuthenticationHandler.cs (1)
151ticket.Properties.RedirectUri = null;
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthHandler.cs (1)
267properties.RedirectUri = OriginalPathBase + OriginalPath + Request.QueryString;
Microsoft.AspNetCore.Identity (1)
SignInManager.cs (1)
1162var properties = new AuthenticationProperties { RedirectUri = redirectUrl };
6 references to RedirectUri
Microsoft.AspNetCore.Authentication (2)
RemoteAuthenticationHandler.cs (2)
148ReturnUri = ticket.Properties.RedirectUri 294ReturnUrl = properties?.RedirectUri,
Microsoft.AspNetCore.Authentication.Cookies (3)
CookieAuthenticationHandler.cs (3)
430var redirectUri = properties.RedirectUri; 464var returnUrl = properties.RedirectUri; 477var redirectUri = properties.RedirectUri;
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthHandler.cs (1)
265if (string.IsNullOrEmpty(properties.RedirectUri))