2018年5月14日月曜日

認証の設定

■.Net Framework

App_Start\IdentityConfig.cs
manager.PasswordValidator = new PasswordValidator
{
    RequiredLength = 6,
    RequireNonLetterOrDigit = false,
    RequireDigit = true,
    RequireLowercase = true,
    RequireUppercase = true,
};

すでにある設定を変更する

■.Net Core
Startup.cs
services.Configure(options =>
{
    //パスワード設定
    options.Password.RequiredLength = 6;
    options.Password.RequireDigit = true;
    options.Password.RequireNonAlphanumeric = false;
    options.Password.RequireLowercase = false;
    options.Password.RequireUppercase = false;
});
オプションとして新たに追加する

0 件のコメント:

コメントを投稿