using Microsoft.AspNetCore.Builder; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Nop.Core.Infrastructure; using Nop.Web.Framework.Infrastructure.Extensions; namespace Nop.Web.Framework.Infrastructure; /// /// Represents object for the configuring authentication middleware on application startup /// public partial class AuthenticationStartup : INopStartup { /// /// Add and configure any of the middleware /// /// Collection of service descriptors /// Configuration of the application public void ConfigureServices(IServiceCollection services, IConfiguration configuration) { //add data protection services.AddNopDataProtection(); //add authentication services.AddNopAuthentication(); } /// /// Configure the using of added middleware /// /// Builder for configuring an application's request pipeline public void Configure(IApplicationBuilder application) { //configure authentication application.UseNopAuthentication(); } /// /// Gets order of this startup configuration implementation /// public int Order => 500; //These middleware are placed between UseRouting and UseEndpoints }