Created
April 30, 2018 22:49
-
-
Save wellingtonjhn/ef98761e3c039f604daa9a08ae4eccde to your computer and use it in GitHub Desktop.
Use Authentication
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 class Startup | |
| { | |
| // ... restante do arquivo ocultado | |
| public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory) | |
| { | |
| // .. restante do método ocultado | |
| app.UseAuthentication(); | |
| app.UseMvc(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment