IdentityOptions Class¶
Represents all the options you can use to configure the identity system.
- Namespace
Microsoft.AspNetCore.Builder- Assemblies
- Microsoft.AspNetCore.Identity
Properties¶
-
Microsoft.AspNetCore.Builder.IdentityOptions.ClaimsIdentity¶ Gets or sets the
Microsoft.AspNetCore.Identity.ClaimsIdentityOptionsfor the identity system.Return type: Microsoft.AspNetCore.Identity.ClaimsIdentityOptions Returns: The Microsoft.AspNetCore.Identity.ClaimsIdentityOptionsfor the identity system.public ClaimsIdentityOptions ClaimsIdentity { get; set; }
-
Microsoft.AspNetCore.Builder.IdentityOptions.Cookies¶ Gets or sets the
Microsoft.AspNetCore.Identity.IdentityCookieOptionsfor the identity system.Return type: Microsoft.AspNetCore.Identity.IdentityCookieOptions Returns: The Microsoft.AspNetCore.Identity.IdentityCookieOptionsfor the identity system.public IdentityCookieOptions Cookies { get; set; }
-
Microsoft.AspNetCore.Builder.IdentityOptions.Lockout¶ Gets or sets the
Microsoft.AspNetCore.Identity.LockoutOptionsfor the identity system.Return type: Microsoft.AspNetCore.Identity.LockoutOptions Returns: The Microsoft.AspNetCore.Identity.LockoutOptionsfor the identity system.public LockoutOptions Lockout { get; set; }
-
Microsoft.AspNetCore.Builder.IdentityOptions.Password¶ Gets or sets the
Microsoft.AspNetCore.Identity.PasswordOptionsfor the identity system.Return type: Microsoft.AspNetCore.Identity.PasswordOptions Returns: The Microsoft.AspNetCore.Identity.PasswordOptionsfor the identity system.public PasswordOptions Password { get; set; }
-
Microsoft.AspNetCore.Builder.IdentityOptions.SecurityStampValidationInterval¶ Gets or sets the
System.TimeSpanafter which security stamps are re-validated.Return type: System.TimeSpan Returns: The System.TimeSpanafter which security stamps are re-validated.public TimeSpan SecurityStampValidationInterval { get; set; }
-
Microsoft.AspNetCore.Builder.IdentityOptions.SignIn¶ Gets or sets the
Microsoft.AspNetCore.Identity.SignInOptionsfor the identity system.Return type: Microsoft.AspNetCore.Identity.SignInOptions Returns: The Microsoft.AspNetCore.Identity.SignInOptionsfor the identity system.public SignInOptions SignIn { get; set; }
-
Microsoft.AspNetCore.Builder.IdentityOptions.Tokens¶ Gets or sets the
Microsoft.AspNetCore.Identity.TokenOptionsfor the identity system.Return type: Microsoft.AspNetCore.Identity.TokenOptions Returns: The Microsoft.AspNetCore.Identity.TokenOptionsfor the identity system.public TokenOptions Tokens { get; set; }
-
Microsoft.AspNetCore.Builder.IdentityOptions.User¶ Gets or sets the
Microsoft.AspNetCore.Identity.UserOptionsfor the identity system.Return type: Microsoft.AspNetCore.Identity.UserOptions Returns: The Microsoft.AspNetCore.Identity.UserOptionsfor the identity system.public UserOptions User { get; set; }
-