AspNetCore.Docs/aspnetcore/release-notes/sample/StartupAnonEndpoint.cs

35 lines
1.0 KiB
C#
Raw Normal View History

What's new in ASP.NET Core 5 (#20140) * What's new in ASP.NET Core 5 * What's new in ASP.NET Core 5 * Work * Work * Work * work * work * work * work * work * work * work * work * GuardRex feedback * work * work * work * work * work * Apply suggestions from code review Co-authored-by: Scott Addie <10702007+scottaddie@users.noreply.github.com> * react to feedback * Apply suggestions from code review Co-authored-by: Scott Addie <10702007+scottaddie@users.noreply.github.com> Co-authored-by: Daniel Roth <daroth@microsoft.com> * Apply suggestions from code review Co-authored-by: Daniel Roth <daroth@microsoft.com> * Apply suggestions from code review Co-authored-by: Stephen Halter <halter73@gmail.com> * react to feedback * react to feedback * React to feedback * Nit ..... *almost done* lol * A few final nits ... *I'm done!* * Update aspnetcore/release-notes/aspnetcore-5.0.md Co-authored-by: Brennan <brecon@microsoft.com> * React to feedback * Update * Apply suggestions from code review Co-authored-by: Scott Addie <10702007+scottaddie@users.noreply.github.com> * Protected Browser Support API updates * Update aspnetcore/release-notes/aspnetcore-5.0.md Co-authored-by: Daniel Roth <daroth@microsoft.com> * Apply suggestions from code review Co-authored-by: Scott Addie <10702007+scottaddie@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Stephen Halter <halter73@gmail.com> * react to feedback * react to feedback Co-authored-by: Scott Addie <10702007+scottaddie@users.noreply.github.com> Co-authored-by: Daniel Roth <daroth@microsoft.com> Co-authored-by: Stephen Halter <halter73@gmail.com> Co-authored-by: Luke Latham <llatham@aquent.com> Co-authored-by: Brennan <brecon@microsoft.com>
2020-10-30 08:20:42 +08:00
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
namespace WebAppAnonEndpoint
{
public class StartupAnonEndpoint
{
// This method gets called by the runtime. Use this method to add services to the container.
// For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
public void ConfigureServices(IServiceCollection services)
{
}
#region snippet
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
app.UseRouting();
app.UseAuthentication();
app.UseAuthorization();
app.UseEndpoints(endpoints =>
{
endpoints.MapGet("/", async context =>
{
await context.Response.WriteAsync("Hello World!");
})
.AllowAnonymous();
});
}
#endregion
}
}