10 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.Authentication.OpenIdConnect (3)
OpenIdConnectHandler.cs (3)
243properties.RedirectUri = BuildRedirectUriIfRelative(Options.SignedOutRedirectUri); 246properties.RedirectUri = OriginalPathBase + OriginalPath + Request.QueryString; 394properties.RedirectUri = OriginalPathBase + OriginalPath + Request.QueryString;
Microsoft.AspNetCore.Authentication.Twitter (1)
TwitterHandler.cs (1)
168properties.RedirectUri = OriginalPathBase + OriginalPath + Request.QueryString;
Microsoft.AspNetCore.Authentication.WsFederation (1)
WsFederationHandler.cs (1)
95properties.RedirectUri = OriginalPathBase + OriginalPath + Request.QueryString;
Microsoft.AspNetCore.Identity (1)
SignInManager.cs (1)
1162var properties = new AuthenticationProperties { RedirectUri = redirectUrl };
17 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)
431var redirectUri = properties.RedirectUri; 457var returnUrl = properties.RedirectUri; 470var redirectUri = properties.RedirectUri;
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthHandler.cs (1)
265if (string.IsNullOrEmpty(properties.RedirectUri))
Microsoft.AspNetCore.Authentication.OpenIdConnect (7)
OpenIdConnectHandler.cs (7)
241if (string.IsNullOrEmpty(properties.RedirectUri)) 244if (string.IsNullOrWhiteSpace(properties.RedirectUri)) 249Logger.PostSignOutRedirect(properties.RedirectUri); 355if (!string.IsNullOrEmpty(properties?.RedirectUri)) 357Response.Redirect(properties.RedirectUri); 392if (string.IsNullOrEmpty(properties.RedirectUri)) 396Logger.PostAuthenticationLocalRedirect(properties.RedirectUri);
Microsoft.AspNetCore.Authentication.Twitter (1)
TwitterHandler.cs (1)
166if (string.IsNullOrEmpty(properties.RedirectUri))
Microsoft.AspNetCore.Authentication.WsFederation (3)
WsFederationHandler.cs (3)
93if (string.IsNullOrEmpty(properties.RedirectUri)) 436if (properties != null && !string.IsNullOrEmpty(properties.RedirectUri)) 438wsFederationMessage.Wreply = BuildRedirectUriIfRelative(properties.RedirectUri);