2 writes to ReturnUrlParameter
Microsoft.AspNetCore.Authentication (1)
RemoteAuthenticationHandler.cs (1)
295
ReturnUrlParameter
= Options.ReturnUrlParameter
Microsoft.AspNetCore.Authentication.Test (1)
GoogleTests.cs (1)
429
ctx.
ReturnUrlParameter
= "rurl";
5 references to ReturnUrlParameter
Microsoft.AspNetCore.Authentication (3)
Events\AccessDeniedContext.cs (1)
40
/// If <see cref="
ReturnUrlParameter
"/> is not set, this property is not used.
RemoteAuthenticationHandler.cs (2)
318
if (!string.IsNullOrEmpty(context.
ReturnUrlParameter
) && !string.IsNullOrEmpty(context.ReturnUrl))
320
uri = QueryHelpers.AddQueryString(uri, context.
ReturnUrlParameter
, context.ReturnUrl);
Microsoft.AspNetCore.Authentication.Test (2)
GoogleTests.cs (2)
426
Assert.Equal("ReturnUrl", ctx.
ReturnUrlParameter
);
457
Assert.Equal("ReturnUrl", ctx.
ReturnUrlParameter
);