AbstractApplicationBuilder<T>.WithRedirectUri(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the redirect URI of the application. The URI must also be registered in the application portal. See https://aka.ms/msal-net-application-configuration
public T WithRedirectUri (string redirectUri);
member this.WithRedirectUri : string -> 'T
Public Function WithRedirectUri (redirectUri As String) As T
Parameters
- redirectUri
- String
URL where the STS will call back the application with the security token. Public Client Applications - desktop, mobile, console apps - use different browsers (system browser, embedded browses) and brokers and each has its own rules.
Returns
The builder to chain the .With methods