C# Class MusicStore.StartupOpenIdConnect

To make runtime to load an environment based startup class, specify the environment by the following ways: 1. Drop a Microsoft.AspNet.Hosting.ini file in the wwwroot folder 2. Add a setting in the ini file named 'ASPNET_ENV' with value of the format 'Startup[EnvironmentName]'. For example: To load a Startup class named 'StartupOpenIdConnect' the value of the env should be 'OpenIdConnect' (eg. ASPNET_ENV=OpenIdConnect). Runtime adds a 'Startup' prefix to this and loads 'StartupOpenIdConnect'. If no environment name is specified the default startup class loaded is 'Startup'. Alternative ways to specify environment are: 1. Set the environment variable named SET ASPNET_ENV=OpenIdConnect 2. For selfhost based servers pass in a command line variable named --env with this value. Eg: "commands": { "web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5002 --ASPNET_ENV OpenIdConnect", },
Afficher le fichier Open project: ivaylokenov/MyTested.AspNetCore.Mvc

Méthodes publiques

Méthode Description
Configure ( IApplicationBuilder app, ILoggerFactory loggerFactory ) : void
ConfigureServices ( IServiceCollection services ) : void
StartupOpenIdConnect ( IHostingEnvironment hostingEnvironment ) : Microsoft.AspNetCore.Builder

Method Details

Configure() public méthode

public Configure ( IApplicationBuilder app, ILoggerFactory loggerFactory ) : void
app IApplicationBuilder
loggerFactory ILoggerFactory
Résultat void

ConfigureServices() public méthode

public ConfigureServices ( IServiceCollection services ) : void
services IServiceCollection
Résultat void

StartupOpenIdConnect() public méthode

public StartupOpenIdConnect ( IHostingEnvironment hostingEnvironment ) : Microsoft.AspNetCore.Builder
hostingEnvironment IHostingEnvironment
Résultat Microsoft.AspNetCore.Builder