Class SignOutOptions
Options for controling sign-out.
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: IRM.AspNetCore.Identity.UI
Assembly: IRM.AspNetCore.Identity.UI.dll
Syntax
public class SignOutOptions
Properties
AutomaticRedirectAfterSignOut
Gets or sets if the user should be automatically redirected after sign-out.
Declaration
public bool AutomaticRedirectAfterSignOut { get; set; }
Property Value
Boolean
|
RedirectUri
The default redirect uri used for automatic redirects after sign-out.
Declaration
public string RedirectUri { get; set; }
Property Value
String
|
ShowSignOutPrompt
Gets or sets if a logout prompt should be displayed when user wants to sign-out.
Declaration
public bool ShowSignOutPrompt { get; set; }
Property Value
Boolean
|