AspNetCore.Identity LockoutOptions.AllowedForNewUsers属性

时间:2018-08-16 09:15:41

标签: c# asp.net-identity asp.net-core-2.1

我试图了解AllowedForNewUsers属性的用途。 documentation声明:

  

获取或设置一个标志,该标志指示是否可以锁定新用户。默认为true。

但这根本不告诉我任何使用,从表面上看,这意味着可以锁定新用户,但是由于您已经具有标准的锁定功能,这根本没有意义。

我什至检查了Git更改日志的实现时间,但这也没有帮助。

    /// Gets or sets a flag indicating whether users can be locked out after creation.
    /// </summary>
    /// <value>
    /// True if a newly created user can be locked out, otherwise false.
    /// </value>
    /// <remarks>
    /// Defaults to true.
    /// </remarks>
    public bool AllowedForNewUsers { get; set; } = true;

任何指导将不胜感激。

0 个答案:

没有答案