11 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)
157ticket.Properties.RedirectUri = null;
Microsoft.AspNetCore.Authentication.DeviceBoundSessions (1)
DeviceBoundSessionHandler.cs (1)
141refreshProperties.RedirectUri = null;
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthHandler.cs (1)
267properties.RedirectUri = OriginalPathBase + OriginalPath + Request.QueryString;
Microsoft.AspNetCore.Authentication.OpenIdConnect (3)
OpenIdConnectHandler.cs (3)
247properties.RedirectUri = BuildRedirectUriIfRelative(Options.SignedOutRedirectUri); 250properties.RedirectUri = OriginalPathBase + OriginalPath + Request.QueryString; 398properties.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)
1321var properties = new AuthenticationProperties { RedirectUri = redirectUrl };
17 references to RedirectUri
Microsoft.AspNetCore.Authentication (2)
RemoteAuthenticationHandler.cs (2)
154ReturnUri = ticket.Properties.RedirectUri 301ReturnUrl = properties?.RedirectUri,
Microsoft.AspNetCore.Authentication.Cookies (3)
CookieAuthenticationHandler.cs (3)
436var redirectUri = properties.RedirectUri; 462var returnUrl = properties.RedirectUri; 475var redirectUri = properties.RedirectUri;
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthHandler.cs (1)
265if (string.IsNullOrEmpty(properties.RedirectUri))
Microsoft.AspNetCore.Authentication.OpenIdConnect (7)
OpenIdConnectHandler.cs (7)
245if (string.IsNullOrEmpty(properties.RedirectUri)) 248if (string.IsNullOrWhiteSpace(properties.RedirectUri)) 253Logger.PostSignOutRedirect(properties.RedirectUri); 359if (!string.IsNullOrEmpty(properties?.RedirectUri)) 361Response.Redirect(properties.RedirectUri); 396if (string.IsNullOrEmpty(properties.RedirectUri)) 400Logger.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);