• 1403/08/28

نوشتن authentication در قسمت startup :

سلام

#region authentication

           services.AddAuthentication(options =>

           {

               options.DefaultAuthenticateScheme = CookieAuthenticationDefaults.AuthenticationScheme;

               options.DefaultChallengeScheme = CookieAuthenticationDefaults.AuthenticationScheme;

               options.DefaultSignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;

           }).AddCookie(options =>

           {

               options.LoginPath = "/login";

               options.LogoutPath = "/log-Out";

               options.ExpireTimeSpan = TimeSpan.FromMinutes(43200);

   });

           #endregion

در .net 6 که statrtup ندارد در کدام قسمت program باید نوشت 

  • 1403/08/28
  • ساعت 20:30

سلام امیدوارم خوب باشید 

لطفا لینک زیر رو مطالعه کنید

https://toplearn.com/ShowQuestion/87950/%D8%B9%D8%AF%D9%88%D9%85-%D9%88%D8%AC%D9%88%D8%AF-configureservices-%D8%AF%D8%B1-net


logo-samandehi