Last active
May 12, 2018 21:19
-
-
Save jesuscampos/4958552f2898120e44177201ca25d509 to your computer and use it in GitHub Desktop.
Método Configure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void Configure(IApplicationBuilder app) | |
{ | |
app.UseAuthentication(); | |
app.UseMyMiddleware(Configuration); | |
app.UseMvc(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void Configure(IApplicationBuilder app, IHostingEnvironment environment, ILoggerFactory loggerFactory) | |
{ | |
app.UseAuthentication(); | |
app.UseMyMiddleware(Configuration); | |
app.UseMyOtherMiddleware(environment, loggerFactory); | |
app.UseMvc(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment